We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74a88ef commit 54b3fabCopy full SHA for 54b3fab
.github/workflows/node.js.yml
@@ -10,7 +10,24 @@ jobs:
10
strategy:
11
matrix:
12
node-version: [14, 16, 18]
13
- os: [ubuntu-latest, windows-latest, macOS-latest]
+ os: [ubuntu-latest, macOS-latest]
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - uses: actions/setup-node@v3
17
+ with:
18
+ node-version: ${{ matrix.node-version }}
19
+ - run: npm --version
20
+ - run: npm ci --ignore-scripts
21
+ - run: npm test
22
+
23
+ # Node 14 comes with npm 6 which has issues on Windows
24
+ # Skipping tests on Windows with Node 14
25
+ build-windows:
26
+ runs-on: ${{ matrix.os }}
27
+ strategy:
28
+ matrix:
29
+ node-version: [16, 18]
30
+ os: [windows-latest]
31
steps:
32
- uses: actions/checkout@v3
33
- uses: actions/setup-node@v3
0 commit comments