chore(deps): bump ctrf from 0.0.18-next-1 to 0.1.0 (#24) #85
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| CI: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| quality: | |
| name: Quality (lint/format) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: npm | |
| - name: Install | |
| run: npm ci | |
| - name: Lint | |
| run: npm run lint:check | |
| - name: Format check | |
| run: npm run format:check | |
| test-build: | |
| name: Test + Build (Node ${{ matrix.node }}) | |
| runs-on: ubuntu-latest | |
| needs: [quality] | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node: ['20', '22', '24'] | |
| permissions: | |
| contents: read | |
| actions: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: npm | |
| - name: Install | |
| run: npm ci | |
| - name: Test | |
| run: npm test | |
| - name: Build | |
| run: npm run build | |
| - name: Test CLI - Merge | |
| run: node dist/cli.js merge test-reports | |
| - name: Test CLI - Validate | |
| run: node dist/cli.js validate examples/minimal.json | |
| - name: Test CLI - Validate Strict | |
| run: node dist/cli.js validate-strict examples/minimal.json | |
| - name: Test CLI - Flaky | |
| run: node dist/cli.js flaky examples/with-retries.json | |
| - name: Test CLI - Generate Test IDs | |
| run: node dist/cli.js generate-test-ids examples/minimal.json | |
| - name: Test CLI - Generate Report ID | |
| run: node dist/cli.js generate-report-id examples/minimal.json | |
| - name: Test CLI - Add Insights | |
| run: node dist/cli.js add-insights examples/minimal.json examples | |
| - name: Publish Test Report | |
| uses: ctrf-io/github-test-reporter@v1 | |
| with: | |
| report-path: './ctrf/*.json' | |
| summary-delta-report: true | |
| github-report: true | |
| insights-report: true | |
| flaky-rate-report: true | |
| previous-results-report: true | |
| upload-artifact: true | |
| artifact-name: ctrf-test-report-node-${{ matrix.node }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| if: always() && hashFiles('ctrf/*.json') != '' | |
| security: | |
| name: Security (deps audit) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: npm | |
| - name: Install | |
| run: npm ci | |
| - name: npm audit (prod) | |
| run: npm audit --omit=dev | |
| continue-on-error: true | |