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 19e8bdb commit cdcd9daCopy full SHA for cdcd9da
.github/workflows/nodejs.yml
@@ -60,7 +60,7 @@ jobs:
60
strategy:
61
matrix:
62
os: [ubuntu-latest, windows-latest, macos-latest]
63
- node-version: [14.x, 16.x, 18.x]
+ node-version: [14.x, 16.x, 18.x, 20.x]
64
webpack-version: [latest]
65
66
runs-on: ${{ matrix.os }}
@@ -82,6 +82,10 @@ jobs:
82
node-version: ${{ matrix.node-version }}
83
cache: "npm"
84
85
+ - name: Uninstall fibers
86
+ run: npm uninstall fibers --save-dev --no-scripts --ignore-scripts
87
+ if: matrix.node-version == '20.x'
88
+
89
- name: Install dependencies
90
run: npm ci
91
0 commit comments