Skip to content

Commit 4d62b30

Browse files
committed
Use node 16 to deploy website
1 parent 2077e4d commit 4d62b30

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,13 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v2
1111

12+
- uses: actions/setup-node@v6
13+
with:
14+
node-version: "16"
15+
cache: "npm"
16+
1217
- name: Install
13-
run: npm install
18+
run: npm ci
1419

1520
- name: Build
1621
run: npm run build

0 commit comments

Comments
 (0)