File tree Expand file tree Collapse file tree 2 files changed +63
-2
lines changed
Expand file tree Collapse file tree 2 files changed +63
-2
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ pull_request :
6+ branches :
7+ - main
8+
9+ jobs :
10+ lint :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v4
14+ - uses : pnpm/action-setup@v3
15+ - uses : actions/setup-node@v4
16+ with :
17+ node-version : lts/*
18+ cache : pnpm
19+
20+ - name : Install
21+ run : pnpm install
22+
23+ - name : Lint
24+ run : pnpm run check:fix
25+
26+ build :
27+ strategy :
28+ matrix :
29+ os : [ubuntu-latest]
30+ runs-on : ${{ matrix.os }}
31+ steps :
32+ - uses : actions/checkout@v4
33+ - uses : pnpm/action-setup@v3
34+ - uses : actions/setup-node@v4
35+ with :
36+ node-version : lts/*
37+ cache : pnpm
38+
39+ - name : Install
40+ run : pnpm install
41+
42+ - name : Build
43+ run : pnpm run build:production
44+
45+ typecheck :
46+ strategy :
47+ matrix :
48+ os : [ubuntu-latest]
49+ runs-on : ${{ matrix.os }}
50+ steps :
51+ - uses : actions/checkout@v4
52+ - uses : pnpm/action-setup@v3
53+ - uses : actions/setup-node@v4
54+ with :
55+ node-version : lts/*
56+ cache : pnpm
57+
58+ - name : Install
59+ run : pnpm install
60+
61+ - name : Typecheck
62+ run : tsc
Original file line number Diff line number Diff line change 99* .iml
1010dev /perf /screenshot *
1111.DS_store
12- .github /workflows /*
13- ! .github /workflows /package-and-publish.yml
1412dist /
1513.eslintcache
1614electron /
15+ data /
You can’t perform that action at this time.
0 commit comments