-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (71 loc) · 2.06 KB
/
branch-build.yaml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: CI
on:
push:
branches: [master, "release/v*"]
pull_request:
jobs:
build:
name: Build on ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
include:
- os: ubuntu-latest
cache: yarn
- os: windows-latest
cache: ""
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Enable Corepack (non-Windows)
if: startsWith(matrix.os, 'windows') == false
run: corepack enable
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
# setup-node invokes yarn via an absolute path, i.e. the previous
# `corepack enable` is bypassed. https://github.com/actions/setup-node/issues/1027
cache: ${{ matrix.cache }}
- name: Enable Corepack (Windows)
if: startsWith(matrix.os, 'windows')
run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn compile:check
- name: Package
run: yarn forge:package
test:
name: Test on ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
include:
- os: ubuntu-latest
cache: yarn
- os: windows-latest
cache: ""
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Enable Corepack (non-Windows)
if: startsWith(matrix.os, 'windows') == false
run: corepack enable
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
# see build job
cache: ${{ matrix.cache }}
- name: Enable Corepack (Windows)
if: startsWith(matrix.os, 'windows')
run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Test
run: yarn test
- name: Lint
run: yarn lint
- name: Check formatting
run: yarn format:check