Skip to content

Commit b2cecf4

Browse files
committed
Add windows and macos to CI build matrix
1 parent f1b4b2f commit b2cecf4

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/ci.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ jobs:
1818
run: make clean deps lint
1919

2020
test:
21-
name: Test - Node v${{ matrix.node_version }}
22-
runs-on: ubuntu-latest
21+
name: Test - ${{ matrix.os }} x Node v${{ matrix.node_version }}
2322
strategy:
2423
fail-fast: false
2524
matrix:
@@ -29,13 +28,19 @@ jobs:
2928
- '20'
3029
- 'lts/*'
3130
- 'latest'
31+
os: [ubuntu-latest, windows-latest, macos-latest]
32+
runs-on: ${{ matrix.os }}
3233
steps:
3334
- uses: actions/checkout@v4
3435
- name: Setup Node
3536
uses: actions/setup-node@v4
3637
with:
3738
node-version: ${{ matrix.node_version }}
3839
cache: npm
40+
- name: Show env
41+
run: |
42+
node --version
43+
uname -a
3944
- name: Compile
4045
run: make clean deps compile
4146
- name: Setup Postgres

0 commit comments

Comments
 (0)