Skip to content

Commit 668c4fb

Browse files
committed
Fix browser tests in CI pipeline
1 parent c65c6cc commit 668c4fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
matrix:
3434
operating-system: ['ubuntu-latest', 'windows-latest']
3535
# https://nodejs.org/en/about/releases/
36-
node-version: ['10', '12', '14', '16', '18']
36+
node-version: ['10', '12', '14', '16', '18', '20']
3737

3838
steps:
3939
- name: Checkout
@@ -54,15 +54,15 @@ jobs:
5454

5555
- name: Test (Integration)
5656
# https://github.com/webpack/webpack/issues/14532
57-
if: ${{ matrix.node-version != '18' }}
57+
if: ${{ matrix.node-version != '18' && matrix.node-version != '20' }}
5858
run: |
5959
cd ./tests/integration/rollup-test && ./test.sh && cd -
6060
cd ./tests/integration/webpack-babel-test && ./test.sh && cd -
6161
cd ./tests/integration/webpack-test && ./test.sh && cd -
6262
6363
browser:
6464
name: Test (Browser)
65-
runs-on: 'ubuntu-latest'
65+
runs-on: 'ubuntu-20.04'
6666
steps:
6767
- name: Checkout
6868
uses: actions/checkout@v2

0 commit comments

Comments
 (0)