build(deps-dev): bump braces from 3.0.2 to 3.0.3 in the npm_and_yarn … #263
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 | |
- develop | |
- release/** | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
codeql-analysis: | |
name: "CodeQL Analysis" | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Initialise CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: 'javascript' | |
queries: security-and-quality | |
- name: "Install buf CLI" | |
uses: bufbuild/buf-setup-action@v1 | |
with: | |
buf_user: ${{ secrets.BUF_USER }} | |
buf_api_token: ${{ secrets.BUF_TOKEN }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build | |
run: | | |
npm ci | |
npm run build | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |