Skip to content

Commit 8682f27

Browse files
authored
ci: Stop running CI for Node.js 18 (#3353)
To reduce the number of concurrent jobs, we can stop running CI for Node.js 18 (since it's EOL in a few days anyway).
1 parent 5990071 commit 8682f27

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-lint-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
node-version: [18.x, 20.x, 22.x]
20+
node-version: [20.x, 22.x]
2121
steps:
2222
- name: Checkout and setup environment
2323
uses: MetaMask/action-checkout-and-setup@v1
@@ -139,7 +139,7 @@ jobs:
139139
strategy:
140140
fail-fast: false
141141
matrix:
142-
node-version: [18.x, 20.x, 22.x]
142+
node-version: [20.x, 22.x]
143143
package-name: ${{ fromJson(needs.prepare.outputs.test-workspace-package-names) }}
144144
steps:
145145
- name: Checkout and setup environment
@@ -219,7 +219,7 @@ jobs:
219219
strategy:
220220
fail-fast: false
221221
matrix:
222-
node-version: [18.x, 20.x, 22.x]
222+
node-version: [20.x, 22.x]
223223
package-name: ${{ fromJson(needs.prepare.outputs.e2e-workspace-package-names) }}
224224
steps:
225225
- name: Checkout and setup environment

0 commit comments

Comments
 (0)