This repository has been archived by the owner on May 22, 2024. It is now read-only.
chore: test that bootstrap code applies side-effect first #2113
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'] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: ['main'] | |
paths-ignore: | |
- '**/*.md' | |
schedule: | |
- cron: '39 21 * * 3' | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
# includes typescript | |
languages: 'javascript' | |
config-file: ./.github/codeql/codeql-config.yml | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |