Validate and safely serialize generated harness metadata #122
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: Run Unit Tests | |
| on: | |
| pull_request: | |
| jobs: | |
| unit-tests: | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| TERM: xterm | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - macos-26 | |
| - ubuntu-24.04 | |
| - windows-2025 | |
| steps: | |
| # Install deps and cache | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| - name: Install Node from .node-version | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version-file: '.node-version' | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm clean-install --prefer-offline --frozen-lockfile | |
| # Run unit tests | |
| - name: Run units tests | |
| run: npm run test:unit |