Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,14 @@ on:

jobs:
test:
name: Tests
runs-on: ubuntu-latest
name: "Tests on ${{ matrix.platform }}"
strategy:
fail-fast: false
matrix:
platform:
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/ci-setup
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"build": "preconstruct build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"postinstall": "preconstruct dev && NODE_OPTIONS=--experimental-strip-types packages/cli/bin.js check",
"postinstall": "preconstruct dev && node --experimental-strip-types packages/cli/bin.js check",
"knip": "knip",
"test": "vitest"
},
Expand Down
Loading