Skip to content

Commit

Permalink
ci: fix node v20 (#1131)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Apr 19, 2023
1 parent 19e8bdb commit cdcd9da
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/nodejs.yml
Expand Up @@ -60,7 +60,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [14.x, 16.x, 18.x]
node-version: [14.x, 16.x, 18.x, 20.x]
webpack-version: [latest]

runs-on: ${{ matrix.os }}
Expand All @@ -82,6 +82,10 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: "npm"

- name: Uninstall fibers
run: npm uninstall fibers --save-dev --no-scripts --ignore-scripts
if: matrix.node-version == '20.x'

- name: Install dependencies
run: npm ci

Expand Down

0 comments on commit cdcd9da

Please sign in to comment.