We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a76f6d4 commit 9e0be53Copy full SHA for 9e0be53
.github/workflows/node.js.yml
@@ -16,15 +16,13 @@ jobs:
16
strategy:
17
matrix:
18
node-version:
19
- - 14.x
20
- # - 16.x CANT do 15+ since node-sass doesn't compile there
+ - 20.x
21
22
steps:
23
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
24
- name: Use Node.js ${{ matrix.node-version }}
25
- uses: actions/setup-node@v2
+ uses: actions/setup-node@v4
26
with:
27
node-version: ${{ matrix.node-version }}
28
- - run: npm i -g npm@latest
29
- run: npm ci --ignore-scripts # avoid "fsevents not accessible from chokidar" error
30
- run: npm test
0 commit comments