Skip to content

Commit

Permalink
chore(deps): upgrade to using Node 22
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelCurrin committed Nov 3, 2024
1 parent 5db6694 commit ec6a698
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 22

- name: Get cached dependencies
uses: actions/cache@v4
Expand All @@ -36,8 +36,8 @@ jobs:
- name: Compile
run: npm run compile

# Use unit rather than `test`, to skip the pretest step, otherwise that
# would duplicate steps above.
# Use unit rather than `test` command, to skip the pretest step, otherwise
# that would duplicate the steps above.
- name: Unit tests (without coverage report)
run: npm run test:unit
env:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
"sb": "bin/reset_sandbox.sh"
},
"engines": {
"node": ">=20",
"npm": ">=9",
"node": ">=22",
"npm": ">=10",
"vscode": "^1.92.0"
},
"devDependencies": {
Expand Down

0 comments on commit ec6a698

Please sign in to comment.