Skip to content

Commit 8ee2356

Browse files
brian-smith-tcriljustinhynes
authored andcommitted
Revert "test: Remove support for Node 18 (#397)"
This reverts commit 6d70b87. Node 18 removal PRs should be merged after Sumac is cut.
1 parent c7eecbb commit 8ee2356

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ on: [push, pull_request]
33
jobs:
44
tests:
55
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
node: [18, 20]
69
steps:
710
- name: Checkout
811
uses: actions/checkout@v4
@@ -11,7 +14,7 @@ jobs:
1114
- name: Setup Nodejs
1215
uses: actions/setup-node@v4
1316
with:
14-
node-version-file: '.nvmrc'
17+
node-version: ${{ matrix.node }}
1518
- name: Install dependencies
1619
run: npm ci
1720
- name: Validate package-lock.json changes

.github/workflows/lockfileversion-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ on:
1010

1111
jobs:
1212
version-check:
13-
uses: openedx/.github/.github/workflows/lockfileversion-check-v3.yml@master
13+
uses: openedx/.github/.github/workflows/lockfile-check-v20.yml@master

0 commit comments

Comments
 (0)