File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,13 @@ defaults:
21
21
22
22
jobs :
23
23
test :
24
- runs-on : ubuntu-latest
25
-
26
24
strategy :
27
25
fail-fast : false
28
26
matrix :
27
+ os :
28
+ - ubuntu-latest
29
+ - windows-latest
30
+ - macos-14
29
31
node-version :
30
32
- ' 20'
31
33
- ' 18'
35
37
- ' true'
36
38
include :
37
39
- node-version : ' *'
38
- bundle : ' false'
39
-
40
- name : Test Node ${{ matrix.node-version }} with --bundle=${{ matrix.bundle }}
40
+ bundle : false
41
+ os : ubuntu-latest
42
+ exclude :
43
+ # No Node 14 on ARM macOS
44
+ - node-version : ' 14'
45
+ os : macos-14
46
+
47
+ runs-on : ${{ matrix.os }}
48
+ name : Test Node ${{ matrix.node-version }} on ${{ matrix.os }}${{ (!matrix.bundle && ' with --no-bundle') || '' }}
41
49
42
50
steps :
43
51
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
You can’t perform that action at this time.
0 commit comments