diff --git a/.github/workflows/codeql.yaml b/.github/workflows/codeql.yaml deleted file mode 100644 index 396cc06..0000000 --- a/.github/workflows/codeql.yaml +++ /dev/null @@ -1,41 +0,0 @@ -name: Code Scanning - -on: - push: - branches: [main] - pull_request: - branches: [main] - schedule: - - cron: "0 9 * * 5" - -jobs: - codeql: - name: CodeQL - runs-on: ubuntu-20.04 - permissions: - security-events: write - actions: read - contents: read - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Initialize CodeQL - uses: github/codeql-action/init@v2 - with: - languages: javascript - - - name: Set up Node - uses: actions/setup-node@v3 - with: - node-version: "18" - cache: "yarn" - - - name: Install Dependencies - run: yarn install --frozen-lockfile - - - name: Build - run: yarn run build - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2