Skip to content

Commit b8adb3d

Browse files
committed
fix: restore workflow config
1 parent ec006bc commit b8adb3d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
strategy:
8383
matrix:
8484
# We aim to test all maintained LTS versions of Node.js as well as the latest stable version
85-
node_version: [18, 20, 22, 24]
85+
node_version: [18, 20, 21]
8686
react_version: [16, 17, 18]
8787

8888
steps:
@@ -111,12 +111,11 @@ jobs:
111111
run: REACT_VERSION=${{ matrix.react_version }} yarn test
112112

113113
e2e-node:
114-
name: Run E2E tests (Node.js ${{ matrix.node_version }}; ${{ matrix.cjs_or_esm }})
115-
runs-on: ubuntu-latest
114+
name: Run E2E tests (Node.js ${{ matrix.node_version }}; ${{ matrix.cjs_or_esm == 'cjs' ? 'CJS' : 'ESM' }}) runs-on: ubuntu-latest
116115
strategy:
117116
matrix:
118117
cjs_or_esm: [cjs, esm]
119-
node_version: [18, 20, 22, 24]
118+
node_version: [18, 20, 21]
120119

121120
steps:
122121
- name: Checkout

0 commit comments

Comments
 (0)