Skip to content

Commit cdcd9da

Browse files
authoredApr 19, 2023
ci: fix node v20 (#1131)
1 parent 19e8bdb commit cdcd9da

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎.github/workflows/nodejs.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
strategy:
6161
matrix:
6262
os: [ubuntu-latest, windows-latest, macos-latest]
63-
node-version: [14.x, 16.x, 18.x]
63+
node-version: [14.x, 16.x, 18.x, 20.x]
6464
webpack-version: [latest]
6565

6666
runs-on: ${{ matrix.os }}
@@ -82,6 +82,10 @@ jobs:
8282
node-version: ${{ matrix.node-version }}
8383
cache: "npm"
8484

85+
- name: Uninstall fibers
86+
run: npm uninstall fibers --save-dev --no-scripts --ignore-scripts
87+
if: matrix.node-version == '20.x'
88+
8589
- name: Install dependencies
8690
run: npm ci
8791

0 commit comments

Comments
 (0)
Please sign in to comment.