diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml deleted file mode 100644 index 4d9a1fa..0000000 --- a/.github/workflows/codeql-analysis.yml +++ /dev/null @@ -1,55 +0,0 @@ -name: "CodeQL" - -on: - push: - branches: - - master - pull_request: - branches: - - master - -jobs: - analyze: - name: Analyze - runs-on: ubuntu-latest - permissions: - actions: read - contents: read - security-events: write - - strategy: - fail-fast: false - matrix: - language: ['cpp', 'javascript'] - - steps: - - name: Fetch Repository - uses: actions/checkout@v3 - with: - persist-credentials: false - - - name: Install Node.js - uses: actions/setup-node@v3 - with: - node-version: 16.17.0 - cache: 'npm' - - - name: Install Modules - run: npm ci - - - name: Build Sample Addon - run: npm run test-build - - - name: Initialize CodeQL - uses: github/codeql-action/init@v2 - with: - languages: ${{ matrix.language }} - queries: +security-and-quality - - - name: Autobuild - uses: github/codeql-action/autobuild@v2 - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 - with: - category: "/language:${{matrix.language}}"