We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8840b93 commit 2e016cfCopy full SHA for 2e016cf
.github/workflows/build-app.yml
@@ -26,12 +26,14 @@ jobs:
26
contents: read
27
steps:
28
- uses: actions/checkout@v4
29
+
30
# Corepack enable をしておけば package.json の packageManager を読んで適切なバージョンの yarn を使ってくれる。
31
# ただし非公式な方法であり、あくまでワークアラウンド。
32
# https://github.com/actions/setup-node/issues/480#issuecomment-1820622085
33
# > enable corepack **before** setup-node.
34
- name: Enable Corepack
35
run: corepack enable
36
37
- uses: actions/setup-node@v4
38
with:
39
node-version: '20'
@@ -40,5 +42,6 @@ jobs:
40
42
41
43
- name: Install Dependencies
44
run: yarn
45
46
- name: Build Next.js Project
47
run: yarn build
0 commit comments