Skip to content

Commit

Permalink
CI: remove Node 18
Browse files Browse the repository at this point in the history
Node 18 is broken
  • Loading branch information
azu committed Aug 21, 2022
1 parent 8c629dc commit 6fa4788
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [ 14, 16, 18 ]
node-version: [ 14, 16 ]
os: [ ubuntu-latest ]
steps:
- name: checkout
Expand All @@ -26,10 +26,4 @@ jobs:
- name: Build
run: yarn run build
- name: Test
if: ${{ matrix.node == '18' }}
run: yarn test
env:
NODE_OPTIONS: --openssl-legacy-provider
- name: Test
if: ${{ matrix.node != '18' }}
run: yarn test

0 comments on commit 6fa4788

Please sign in to comment.