-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
51 lines (42 loc) · 1.04 KB
/
build_assets.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Build assets
on:
pull_request:
types: [opened, synchronize, reopened]
release:
types: [created]
env:
node-version: 18
concurrency:
group: Build assets ${{ github.ref }}
cancel-in-progress: true
jobs:
#############
# Build
#############
build:
runs-on: ubuntu-latest
name: Build Assets
strategy:
fail-fast: false
steps:
- name: Checkout sources
uses: actions/checkout@v3
with:
fetch-depth: 0
# Yarn
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.node-version }}
- name: Cache yarn files
uses: actions/cache@v3
with:
path: .yarn/cache
key: ${{ runner.os }}-yarn-v2-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-v2-${{ hashFiles('**/yarn.lock') }}
${{ runner.os }}-yarn-v2-
- name: Install yarn dependencies
run: yarn install --immutable
- name: Build assets
run: yarn run build