Skip to content

Commit 94e38a0

Browse files
committed
apply github actions fix actions/setup-node#1075 (comment)
1 parent bccc77a commit 94e38a0

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/deploy-site.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,17 @@ jobs:
1010
steps:
1111
- name: git checkout
1212
uses: actions/checkout@v4
13-
- name: Enable Corepack before setting up Node
13+
- name: Setup target Node.js to enable Corepack
14+
uses: actions/setup-node@v4
15+
with:
16+
node-version: 16
17+
- name: Enable Corepack
1418
run: corepack enable
1519
- name: setup Node.js
1620
uses: actions/setup-node@v1
1721
with:
18-
node-version: 16.x
22+
node-version: 16
23+
cache: yarn
1924
- run: yarn
2025
- run: yarn frontend-build
2126
- name: deploy page

0 commit comments

Comments
 (0)