fix: Trigger patch release for CI pipeline refactor (#80) #6
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: | |
| pull_request: | |
| branches: [master] | |
| types: [opened, reopened, synchronize, ready_for_review] | |
| push: | |
| branches: [master] | |
| schedule: | |
| - cron: '23 4 * * 1' | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| concurrency: | |
| group: codeql-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| analyze: | |
| name: codeql/analyze | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: [javascript-typescript] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: ${{ matrix.language }} | |
| - uses: pnpm/action-setup@v6 | |
| - run: pnpm install --frozen-lockfile | |
| env: | |
| HUSKY: 0 | |
| - name: Build for analysis | |
| run: pnpm build | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 |