Skip to content

Commit

Permalink
ci: test with node.js v18, remove v17 (#4478)
Browse files Browse the repository at this point in the history
* ci: test with node.js v18, remove v17

* ci: temporary workaround for node.js v18 with source maps mdoule

Co-authored-by: Lukas Taegert-Atkinson <lukastaegert@users.noreply.github.com>
  • Loading branch information
dnalborczyk and lukastaegert committed Apr 30, 2022
1 parent 6518775 commit e3bfe69
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Expand Up @@ -55,7 +55,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['10', '12', '17']
node: ['10', '12', '18']
name: Node ${{ matrix.node }} (Linux)
steps:
- name: Checkout Commit
Expand All @@ -70,6 +70,8 @@ jobs:
run: npm run ci:test:only
env:
CI: true
# temporary workaround for: https://github.com/nodejs/node/issues/42638
NODE_OPTIONS: ${{ matrix.node == '18' && '--no-experimental-fetch' }}

macos:
runs-on: macos-latest
Expand Down

0 comments on commit e3bfe69

Please sign in to comment.