Skip to content

Commit 73b72a5

Browse files
committed
chore(e2e): also test on node versions 16, 18, and 22
1 parent 3f069ab commit 73b72a5

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/run-all-tests-pr.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,22 @@ jobs:
118118
run: cd end-to-end && npx jest
119119
shell: bash
120120

121+
- name: "node 16"
122+
uses: actions/setup-node@v6
123+
with:
124+
node-version: 16
125+
- name: run tests (node 16)
126+
run: cd end-to-end && npx jest
127+
shell: bash
128+
129+
- name: "node 18"
130+
uses: actions/setup-node@v6
131+
with:
132+
node-version: 18
133+
- name: run tests (node 18)
134+
run: cd end-to-end && npx jest
135+
shell: bash
136+
121137
- name: "node 20"
122138
uses: actions/setup-node@v6
123139
with:
@@ -126,6 +142,14 @@ jobs:
126142
run: cd end-to-end && npx jest
127143
shell: bash
128144

145+
- name: "node 22"
146+
uses: actions/setup-node@v6
147+
with:
148+
node-version: 22
149+
- name: run tests (node 22)
150+
run: cd end-to-end && npx jest
151+
shell: bash
152+
129153
- name: "node 24"
130154
uses: actions/setup-node@v6
131155
with:

0 commit comments

Comments
 (0)