Skip to content

Commit

Permalink
chore: refactor CI
Browse files Browse the repository at this point in the history
  • Loading branch information
matmut7 committed Nov 8, 2023
1 parent 18d83aa commit 72750d0
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: Linting and Scanning

on:
push:
branches:
- "**"
tags-ignore:
- v*

jobs:
setup:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'

lint:
runs-on: ubuntu-latest
needs: setup

steps:
- name: Install dependencies
run: |
yarn
- name: Run lint
run: |
yarn lint
tests:
runs-on: ubuntu-latest
needs: setup
steps:
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn test

codeql:
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]

steps:
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}

- name: Autobuild
uses: github/codeql-action/autobuild@v2

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2

0 comments on commit 72750d0

Please sign in to comment.