From b8f50d9b64714b6ddfe46108f402343926d5ddfe Mon Sep 17 00:00:00 2001 From: Bruno Oliveira da Silva Date: Tue, 29 Mar 2022 07:35:20 -0300 Subject: [PATCH] Introduce CodeQL analysis (#2262) --- .github/workflows/codeql-analysis.yml | 51 +++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .github/workflows/codeql-analysis.yml diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 0000000000..a2cd41f857 --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -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