blob: fb2e1987fbd070a94930bcb29fb6706c609ed69e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
name: Build Website
runs:
using: "composite"
steps:
- name: Set Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'
- name: Set up Yarn2
run: |
corepack enable
yarn set version berry
- name: Run install
uses: borales/actions-yarn@v5
with:
cmd: install # will run `yarn install` command
- name: Build production bundle
uses: borales/actions-yarn@v5
with:
cmd: build
|