Zod schema for config file #793
Workflow file for this run
This file contains 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: test covector | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-latest", "macos-latest", "windows-latest"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
# some of the tests use the covector git history to run | |
fetch-depth: 0 | |
- uses: volta-cli/action@v4 | |
- run: npm ci | |
- run: npm run build # ts-jest doesn't pick up project references: https://github.com/kulshekhar/ts-jest/issues/1648 | |
- run: npm test -- --ci # runs it in CI mode which fails on snapshot changes |