Setup cross-platform CI #8
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: Cross-Platform CI | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- "**.ts" | |
- "**.js" | |
- "**.json" | |
- "example/**" | |
- ".github/workflows/**" | |
pull_request: | |
branches: | |
- master | |
paths: | |
- "**.ts" | |
- "**.js" | |
- "**.json" | |
- "example/**" | |
- ".github/workflows/**" | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 3 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
node: [22, 20, 18] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Run tests | |
run: npm test | |
- name: Run example tests | |
run: | | |
./rv example counter test | |
./rv example counter invariant | |
./rv example cargo test | |
./rv example cargo invariant | |
./rv example reverse test | |
./rv example slice test |