Skip to content

Commit

Permalink
Fix browser tests in CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
jaylinski committed Jul 23, 2023
1 parent c65c6cc commit 668c4fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
matrix:
operating-system: ['ubuntu-latest', 'windows-latest']
# https://nodejs.org/en/about/releases/
node-version: ['10', '12', '14', '16', '18']
node-version: ['10', '12', '14', '16', '18', '20']

steps:
- name: Checkout
Expand All @@ -54,15 +54,15 @@ jobs:

- name: Test (Integration)
# https://github.com/webpack/webpack/issues/14532
if: ${{ matrix.node-version != '18' }}
if: ${{ matrix.node-version != '18' && matrix.node-version != '20' }}
run: |
cd ./tests/integration/rollup-test && ./test.sh && cd -
cd ./tests/integration/webpack-babel-test && ./test.sh && cd -
cd ./tests/integration/webpack-test && ./test.sh && cd -
browser:
name: Test (Browser)
runs-on: 'ubuntu-latest'
runs-on: 'ubuntu-20.04'
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down

0 comments on commit 668c4fb

Please sign in to comment.