We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1b4b2f commit b2cecf4Copy full SHA for b2cecf4
.github/workflows/ci.yml
@@ -18,8 +18,7 @@ jobs:
18
run: make clean deps lint
19
20
test:
21
- name: Test - Node v${{ matrix.node_version }}
22
- runs-on: ubuntu-latest
+ name: Test - ${{ matrix.os }} x Node v${{ matrix.node_version }}
23
strategy:
24
fail-fast: false
25
matrix:
@@ -29,13 +28,19 @@ jobs:
29
28
- '20'
30
- 'lts/*'
31
- 'latest'
+ os: [ubuntu-latest, windows-latest, macos-latest]
32
+ runs-on: ${{ matrix.os }}
33
steps:
34
- uses: actions/checkout@v4
35
- name: Setup Node
36
uses: actions/setup-node@v4
37
with:
38
node-version: ${{ matrix.node_version }}
39
cache: npm
40
+ - name: Show env
41
+ run: |
42
+ node --version
43
+ uname -a
44
- name: Compile
45
run: make clean deps compile
46
- name: Setup Postgres
0 commit comments