chore(deps): bump the test-versions group across 1 directory with 36 updates #11718
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: AI Guard | |
| on: | |
| pull_request: | |
| push: | |
| branches: [master, mq-working-branch-master-*] | |
| schedule: | |
| - cron: 0 4 * * * | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/master' && github.run_id || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| macos: | |
| name: ${{ github.workflow }} / macos | |
| runs-on: macos-latest | |
| permissions: | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - uses: ./.github/actions/node/latest | |
| - uses: ./.github/actions/install | |
| - run: yarn test:aiguard:ci | |
| - uses: ./.github/actions/coverage | |
| with: | |
| flags: aiguard-macos | |
| - uses: ./.github/actions/upload-junit-artifacts | |
| if: "!cancelled()" | |
| with: | |
| id: ${{ github.job }} | |
| ubuntu: | |
| name: ${{ github.workflow }} / ubuntu | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - uses: ./.github/actions/node/oldest-maintenance-lts | |
| - uses: ./.github/actions/install | |
| - run: yarn test:aiguard:ci | |
| - uses: ./.github/actions/node/newest-maintenance-lts | |
| - run: yarn test:aiguard:ci | |
| - uses: ./.github/actions/node/active-lts | |
| - run: yarn test:aiguard:ci | |
| - uses: ./.github/actions/node/latest | |
| - run: yarn test:aiguard:ci | |
| - uses: ./.github/actions/coverage | |
| with: | |
| flags: aiguard-ubuntu | |
| - uses: ./.github/actions/upload-junit-artifacts | |
| if: "!cancelled()" | |
| with: | |
| id: ${{ github.job }} | |
| windows: | |
| name: ${{ github.workflow }} / windows | |
| runs-on: windows-2022 | |
| permissions: | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - uses: ./.github/actions/node | |
| with: | |
| version: 24.14.1 # TODO: remove pin when https://github.com/nodejs/node/issues/62991 is fixed | |
| - uses: ./.github/actions/install | |
| - run: yarn test:aiguard:ci | |
| - uses: ./.github/actions/node-crash-report | |
| if: failure() | |
| - uses: ./.github/actions/coverage | |
| with: | |
| flags: aiguard-windows | |
| - uses: ./.github/actions/upload-junit-artifacts | |
| if: "!cancelled()" | |
| with: | |
| id: ${{ github.job }} | |
| integration: | |
| name: ${{ github.workflow }} / integration (node-${{ matrix.version }}) | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: [maintenance, active, latest] | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - uses: ./.github/actions/node | |
| with: | |
| version: ${{ matrix.version }} | |
| - uses: ./.github/actions/install | |
| - run: yarn test:integration:aiguard:coverage | |
| - uses: ./.github/actions/coverage | |
| with: | |
| flags: aiguard-integration-${{ matrix.version }} | |
| - uses: ./.github/actions/upload-junit-artifacts | |
| if: "!cancelled()" | |
| with: | |
| id: ${{ github.job }}-${{ strategy.job-index }} |