File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,9 @@ if [ ! -z "$(git status --porcelain)" ]; then
7
7
>&2 echo " Failed: Repo should be clean before testing!"
8
8
exit 1
9
9
fi
10
- # Pin npm to v8 since v9 doesn't support Node 12.
11
10
# When updating this, make sure to update the npm version in
12
11
# `.github/workflows/update-dependencies.yml` too.
13
- sudo npm install --force -g npm@^8.19.3
12
+ sudo npm install --force -g npm@9.3.0
14
13
# Reinstall modules and then clean to remove absolute paths
15
14
# Use 'npm ci' instead of 'npm install' as this is intended to be reproducible
16
15
npm ci
Original file line number Diff line number Diff line change 27
27
run : |
28
28
git fetch origin "$BRANCH" --depth=1
29
29
git checkout "origin/$BRANCH"
30
- # Pin npm to v8 since v9 doesn't support Node 12.
31
30
# When updating this, make sure to update the npm version in
32
31
# `.github/workflows/script/check-node-modules.sh` too.
33
- sudo npm install --force -g npm@^8.19.3
32
+ sudo npm install --force -g npm@9.3.0
34
33
npm install
35
34
npm ci
36
35
npm run removeNPMAbsolutePaths
You can’t perform that action at this time.
0 commit comments