Skip to content

Commit ec6a698

Browse files
committed
chore(deps): upgrade to using Node 22
1 parent 5db6694 commit ec6a698

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616

1717
- name: Use Node.js
1818
uses: actions/setup-node@v3
1919
with:
20-
node-version: 16
20+
node-version: 22
2121

2222
- name: Get cached dependencies
2323
uses: actions/cache@v4
@@ -36,8 +36,8 @@ jobs:
3636
- name: Compile
3737
run: npm run compile
3838

39-
# Use unit rather than `test`, to skip the pretest step, otherwise that
40-
# would duplicate steps above.
39+
# Use unit rather than `test` command, to skip the pretest step, otherwise
40+
# that would duplicate the steps above.
4141
- name: Unit tests (without coverage report)
4242
run: npm run test:unit
4343
env:

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
"sb": "bin/reset_sandbox.sh"
2727
},
2828
"engines": {
29-
"node": ">=20",
30-
"npm": ">=9",
29+
"node": ">=22",
30+
"npm": ">=10",
3131
"vscode": "^1.92.0"
3232
},
3333
"devDependencies": {

0 commit comments

Comments
 (0)