We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9c9081 commit bf987feCopy full SHA for bf987fe
1 file changed
.github/workflows/nodejs.yml
@@ -6,14 +6,15 @@ jobs:
6
test:
7
env:
8
FORCE_COLOR: '1'
9
- name: Build & Test
10
- runs-on: ubuntu-latest
+ name: Build & Test (Node ${{ matrix.node-version }}, ${{ matrix.os }})
+ runs-on: ${{ matrix.os }}
11
strategy:
12
matrix:
13
- include:
14
- - node-version: '20'
15
- - node-version: '22'
16
- - node-version: '24'
+ os: [ubuntu-latest, windows-latest]
+ node-version: ['20', '22', '24']
+ exclude:
+ - os: windows-latest
17
+ node-version: '20'
18
steps:
19
- name: Checkout Repository
20
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
0 commit comments