Merge pull request #289 from dcastil/breaking-feature/285/remove-modu… #341
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'CodeQL' | |
on: | |
push: | |
branches: [main] | |
schedule: | |
- cron: '30 8 * * 5' | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.17.1 | |
- name: Use node_modules cache | |
uses: actions/cache@v3 | |
with: | |
path: node_modules | |
key: yarn-node-18-lock-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
yarn-node-18-lock- | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: javascript | |
- run: yarn install --frozen-lockfile | |
- run: yarn build | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |