Skip to content

Commit

Permalink
Applying workaround for yarn v4 in GitHub pages deployment workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Giovanni Baratta <[email protected]>
  • Loading branch information
giovannibaratta committed May 15, 2024
1 parent d99d2b5 commit 44046c9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/deploy-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,15 @@ jobs:
with:
node-version: 18

# Using Yarn v4 causes issue in GitHub Actions
# See https://github.com/actions/setup-node/issues/899
- run: corepack enable

- uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn

- name: Yarn install
uses: borales/actions-yarn@v4
with:
Expand Down

0 comments on commit 44046c9

Please sign in to comment.