Skip to content

Commit 75968b9

Browse files
authored
Require Node 18 for validation (#388)
Recent HED validation requires features only available in node 18.
1 parent 127fb50 commit 75968b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/validate_datasets.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Set up Node.js
3636
uses: actions/setup-node@v3
3737
with:
38-
node-version: 14
38+
node-version: 18
3939

4040
- name: Install BIDS validator (stable)
4141
if: "matrix.bids-validator == 'stable'"
@@ -47,7 +47,7 @@ jobs:
4747
run: |
4848
pushd ..
4949
# Get npm 7+
50-
npm install -g npm@^7
50+
npm install -g npm
5151
git clone --depth 1 https://github.com/bids-standard/bids-validator
5252
cd bids-validator
5353
# Generate the full development node_modules

0 commit comments

Comments
 (0)