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 5493ec1 commit 1cc6c75Copy full SHA for 1cc6c75
.github/actions/build/action.yml
@@ -2,21 +2,17 @@ name: Build Website
2
runs:
3
using: "composite"
4
steps:
5
+ - name: Enable Corepack
6
+ shell: bash
7
+ run: corepack enable
8
- name: Set Node.js
9
uses: actions/setup-node@v4
10
with:
11
node-version: 20.x
12
cache: 'yarn'
- - name: Set up Yarn2
13
+ - name: Install dependencies
14
shell: bash
- run: |
- corepack enable
- yarn set version berry
15
- - name: Run install
16
- uses: borales/actions-yarn@v5
17
- with:
18
- cmd: install # will run `yarn install` command
19
- - name: Build production bundle
20
21
22
- cmd: build
+ run: yarn install --immutable
+ - name: Run build
+ run: yarn build
0 commit comments