Skip to content

Commit

Permalink
apply github actions fix actions/setup-node#1075 (comment)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuco23 committed Jun 13, 2024
1 parent bccc77a commit 94e38a0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/deploy-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,17 @@ jobs:
steps:
- name: git checkout
uses: actions/checkout@v4
- name: Enable Corepack before setting up Node
- name: Setup target Node.js to enable Corepack
uses: actions/setup-node@v4
with:
node-version: 16
- name: Enable Corepack
run: corepack enable
- name: setup Node.js
uses: actions/setup-node@v1
with:
node-version: 16.x
node-version: 16
cache: yarn
- run: yarn
- run: yarn frontend-build
- name: deploy page
Expand Down

0 comments on commit 94e38a0

Please sign in to comment.