File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ pull_request :
5+ push :
6+ branches :
7+ - main
8+
9+ jobs :
10+ lint :
11+ name : Lint
12+ runs-on : ubuntu-latest
13+ steps :
14+ - uses : actions/checkout@v6
15+
16+ - name : Setup pnpm
17+ uses : pnpm/action-setup@v6
18+
19+ - name : Setup Node
20+ uses : actions/setup-node@v6
21+ with :
22+ node-version : 22
23+ cache : pnpm
24+
25+ - name : Install dependencies
26+ run : pnpm install --frozen-lockfile
27+
28+ - name : Lint
29+ run : pnpm lint
Original file line number Diff line number Diff line change @@ -11,15 +11,13 @@ jobs:
1111 release :
1212 runs-on : ubuntu-latest
1313 steps :
14- - uses : actions/checkout@v4
14+ - uses : actions/checkout@v6
1515
1616 - name : Setup pnpm
17- uses : pnpm/action-setup@v4
18- with :
19- package_json_file : package.json
17+ uses : pnpm/action-setup@v6
2018
2119 - name : Setup Node
22- uses : actions/setup-node@v4
20+ uses : actions/setup-node@v6
2321 with :
2422 node-version : 22
2523 cache : pnpm
You can’t perform that action at this time.
0 commit comments