chore(deps-dev): bump chai from 5.3.3 to 6.2.2 #26
Workflow file for this run
This file contains hidden or 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: [ "master" ] | |
| pull_request: | |
| # The branches below must be a subset of the branches above | |
| branches: [ "master" ] | |
| schedule: | |
| - cron: '45 12 * * 4' | |
| jobs: | |
| analyze: | |
| name: Analyze (${{ matrix.language }}) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| # TypeScript / JavaScript sources (src/, test/, build config). | |
| - language: javascript-typescript | |
| build-mode: none | |
| # Vendored native Curve25519 / Ed25519 (XEdDSA) C sources under | |
| # native/, compiled to WASM. Scanned build-less so CI needs no | |
| # emscripten toolchain (which the old Autobuild step never provided, | |
| # leaving the crypto core unscanned). | |
| - language: c-cpp | |
| build-mode: none | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v3 | |
| with: | |
| languages: ${{ matrix.language }} | |
| build-mode: ${{ matrix.build-mode }} | |
| # security-extended adds the deeper security query suite on top of the | |
| # default set, appropriate for a security-critical library. Quality / | |
| # style queries (security-and-quality) are intentionally omitted to | |
| # keep security alerts high-signal. | |
| queries: security-extended | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v3 | |
| with: | |
| category: "/language:${{ matrix.language }}" |