Split package CI and action self tests #1054
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@v6 | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '26' | |
| 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: ['24', '26'] | |
| permissions: | |
| contents: read | |
| actions: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: npm | |
| - name: Install | |
| run: npm ci | |
| - name: Test | |
| run: npm test | |
| - name: Build | |
| run: npm run package | |
| - name: Publish Test Report | |
| uses: ctrf-io/github-test-reporter@v1 | |
| with: | |
| report-path: './ctrf/*.json' | |
| summary-delta-report: true | |
| github-report: true | |
| failed-report: true | |
| flaky-report: true | |
| insights-report: true | |
| fail-rate-report: true | |
| flaky-rate-report: true | |
| slowest-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') != '' | |
| dist: | |
| name: Dist rebuild validation | |
| runs-on: ubuntu-latest | |
| needs: [quality] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '26' | |
| cache: npm | |
| - name: Install | |
| run: npm ci | |
| - name: Rebuild dist | |
| run: npm run package | |
| - name: Check for uncommitted build changes | |
| run: | | |
| if ! git diff --exit-code dist/; then | |
| echo "::error::dist/ is out of date. Run 'npm run package' locally and commit the result." | |
| exit 1 | |
| fi | |
| security: | |
| name: Security (deps audit) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '26' | |
| cache: npm | |
| - name: Install | |
| run: npm ci | |
| - name: npm audit (prod) | |
| run: npm audit --omit=dev | |
| continue-on-error: true |