File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Check
2+
3+ on :
4+ push :
5+ branches : ["master"]
6+ pull_request :
7+ branches : ["master"]
8+
9+ jobs :
10+ deps :
11+ runs-on : ubuntu-latest
12+ strategy :
13+ matrix :
14+ node-version : [22]
15+ steps :
16+ - uses : actions/checkout@v4
17+ - name : Install pnpm
18+ uses : pnpm/action-setup@v4
19+ - name : Use Node.js ${{ matrix.node-version }}
20+ uses : actions/setup-node@v4
21+ with :
22+ node-version : ${{ matrix.node-version }}
23+ cache : ' pnpm'
24+ - name : Install dependencies
25+ run : pnpm install
26+ - name : Build docs
27+ run : pnpm doc
28+
29+ docs :
30+ needs : deps
31+ runs-on : ubuntu-latest
32+ steps :
33+ - name : Build docs
34+ run : pnpm doc
35+
36+ lint :
37+ needs : deps
38+ runs-on : ubuntu-latest
39+ steps :
40+ - name : Lintcheck
41+ run : pnpm lint:check
42+
You can’t perform that action at this time.
0 commit comments