From 3cf6580c9c1eb57bc6803bcc12d0fb435ffa3a4b Mon Sep 17 00:00:00 2001 From: Barry Gordon Date: Thu, 10 Feb 2022 21:42:40 +0000 Subject: [PATCH] Slim down our CodeQL config --- .github/workflows/codeql-analysis.yml | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index c0bda33..2fc573d 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -18,32 +18,15 @@ jobs: contents: read security-events: write - strategy: - fail-fast: false - matrix: - language: [ 'javascript' ] - steps: - uses: actions/checkout@v2 with: ref: ${{ github.event.pull_request.head.sha }} - - name: Read .nvmrc - id: nvm - run: echo ::set-output name=NVMRC::$(cat .nvmrc) - - - name: Setup Node.js - uses: actions/setup-node@v1 - with: - node-version: ${{ steps.nvm.outputs.NVMRC }} - - name: Initialize CodeQL uses: github/codeql-action/init@v1 with: - languages: ${{ matrix.language }} - - - name: Build executable - run: npm run package + languages: javascript - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v1