Skip to content

Commit 071a7e1

Browse files
node 22
1 parent 3703a49 commit 071a7e1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/check.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ jobs:
1313
steps:
1414
- name: Checkout code
1515
uses: actions/checkout@v4
16+
- name: Setup Node.js
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: '22'
1620
- name: Install
1721
run: npm install
1822
- name: Check formatting and lints

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: withastro/action@v3
2424
with:
2525
path: . # The root location of your Astro project inside the repository. (optional)
26-
# node-version: 20 # The specific version of Node that should be used to build your site. Defaults to 20. (optional)
26+
node-version: 22 # The specific version of Node that should be used to build your site. Defaults to 20. (optional)
2727
package-manager: npm # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional)
2828

2929
deploy:

0 commit comments

Comments
 (0)