File tree Expand file tree Collapse file tree 1 file changed +56
-0
lines changed
Expand file tree Collapse file tree 1 file changed +56
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [master]
6+ pull_request :
7+ branches : [master]
8+
9+ jobs :
10+ lint :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v4
14+ - uses : pnpm/action-setup@v4
15+ - uses : actions/setup-node@v4
16+ with :
17+ node-version : 22
18+ cache : pnpm
19+ - run : pnpm install --frozen-lockfile
20+ - run : pnpm run lint
21+
22+ type-check :
23+ runs-on : ubuntu-latest
24+ steps :
25+ - uses : actions/checkout@v4
26+ - uses : pnpm/action-setup@v4
27+ - uses : actions/setup-node@v4
28+ with :
29+ node-version : 22
30+ cache : pnpm
31+ - run : pnpm install --frozen-lockfile
32+ - run : pnpm run type-check
33+
34+ test :
35+ runs-on : ubuntu-latest
36+ steps :
37+ - uses : actions/checkout@v4
38+ - uses : pnpm/action-setup@v4
39+ - uses : actions/setup-node@v4
40+ with :
41+ node-version : 22
42+ cache : pnpm
43+ - run : pnpm install --frozen-lockfile
44+ - run : pnpm run test
45+
46+ build :
47+ runs-on : ubuntu-latest
48+ steps :
49+ - uses : actions/checkout@v4
50+ - uses : pnpm/action-setup@v4
51+ - uses : actions/setup-node@v4
52+ with :
53+ node-version : 22
54+ cache : pnpm
55+ - run : pnpm install --frozen-lockfile
56+ - run : pnpm run build
You can’t perform that action at this time.
0 commit comments