File tree Expand file tree Collapse file tree 5 files changed +39
-184
lines changed
Expand file tree Collapse file tree 5 files changed +39
-184
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : CI
2+ on :
3+ pull_request :
4+ branches :
5+ - master
6+ push :
7+ branches :
8+ - master
9+ jobs :
10+ frontend-ci :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v4
14+ - name : Install Bun
15+ uses : oven-sh/setup-bun@v2
16+ - name : Install dependencies
17+ run : bun install --frozen-lockfile
18+ - name : Lint
19+ run : bun run lint:frontend
20+ - name : Typecheck
21+ run : bun run ts:frontend
22+ - name : Test
23+ run : bun run test:frontend
24+ backend-ci :
25+ runs-on : ubuntu-latest
26+ steps :
27+ - uses : actions/checkout@v4
28+ - name : Install Bun
29+ uses : oven-sh/setup-bun@v2
30+ - name : Install dependencies
31+ run : bun install --frozen-lockfile
32+ - name : Lint
33+ run : bun run lint:frontend
34+ - name : Typecheck
35+ run : bun run ts:frontend
36+ - name : Test
37+ run : bun run test:frontend
38+
Original file line number Diff line number Diff line change 4040 pkgs . postgresql
4141 pkgs . eas-cli
4242 pkgs . tree
43+ pkgs . act
4344 ] ;
4445
4546 services . postgres = {
You can’t perform that action at this time.
0 commit comments