Skip to content

Validate and safely serialize generated harness metadata #122

Validate and safely serialize generated harness metadata

Validate and safely serialize generated harness metadata #122

Workflow file for this run

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