chore: pin windows node version to a known good one #47
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: CI tests | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
defaults: | |
run: | |
working-directory: . | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
node_version: [20] | |
include: | |
- os: ubuntu-latest | |
node_version: 18 | |
- os: ubuntu-latest | |
node_version: 21 | |
- os: windows-latest | |
node_version: 21.5 # Node 20 has a unicode file path bug on Windows and Node 21.6 has a bug that causes a crash | |
fail-fast: false | |
name: "CI tests on node-${{ matrix.node_version }}, ${{ matrix.os }}" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Set node version to ${{ matrix.node_version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node_version }} | |
cache: "pnpm" | |
- name: Install | |
run: pnpm install | |
- name: Build | |
run: pnpm run build | |
- name: Run CI tests | |
run: pnpm run test |