-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (55 loc) · 1.56 KB
/
ci.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: CI
on:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize]
jobs:
build:
name: Build and Test
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
# https://stackoverflow.com/questions/60491837/saving-cache-on-job-failure-in-github-actions
- name: Cache turbo build restore
uses: actions/cache/restore@v3
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-
- uses: pnpm/action-setup@v3
with:
version: 9
run_install: false
- uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
# for Mermaid
- name: Install Playwright Browsers
run: pnpx playwright install chromium
# for PlantUML
# - uses: actions/setup-java@v4
# with:
# distribution: "microsoft"
# java-version: "21"
# - uses: ts-graphviz/setup-graphviz@v2
# for d2
- run: curl -fsSL https://d2lang.com/install.sh | sh -s --
- name: Build
run: pnpm build --cache-dir=.turbo
- name: Cache turbo build save
uses: actions/cache/save@v3
# if: always()
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
- name: Test
run: pnpm test