Introduce CodeQL analysis (#2262)

This commit is contained in:
Bruno Oliveira da Silva 2022-03-29 07:35:20 -03:00 committed by GitHub
parent 3594f3e91b
commit b8f50d9b64
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

51
.github/workflows/codeql-analysis.yml vendored Normal file
View file

@ -0,0 +1,51 @@
name: CodeQL
on:
push:
branches: [main]
paths-ignore:
- cypress/**
- mocks/**
pull_request:
branches: [main]
paths-ignore:
- cypress/**
- mocks/**
env:
NODE_VERSION: 16
jobs:
analyze:
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: javascript
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
check-latest: true
cache: npm
- name: Cache Node modules
id: cache-node-modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: npm ci
- name: Run build task
run: npm run build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1