File tree Expand file tree Collapse file tree 4 files changed +2
-39
lines changed
Expand file tree Collapse file tree 4 files changed +2
-39
lines changed Original file line number Diff line number Diff line change 2222
2323 - name : Setup Node.js and pnpm
2424 uses : ./.github/actions/setup-node-pnpm
25- with :
26- enable-cache : true
27- frozen-lockfile : true
2825
2926 - name : Lint code
3027 run : pnpm lint
Original file line number Diff line number Diff line change 3030
3131 - name : Setup Node.js and pnpm
3232 uses : ./.github/actions/setup-node-pnpm
33- with :
34- enable-cache : false
35- frozen-lockfile : false
3633
3734 - name : Run lint
3835 run : pnpm lint
Original file line number Diff line number Diff line change 2525
2626 - name : Setup Node.js and pnpm
2727 uses : ./.github/actions/setup-node-pnpm
28- with :
29- enable-cache : false
30- frozen-lockfile : false
3128
3229 - name : Lint
3330 run : pnpm lint
Original file line number Diff line number Diff line change 1616 steps :
1717 - name : Checkout code
1818 uses : actions/checkout@v5
19- with :
20- token : ${{ secrets.GITHUB_TOKEN }}
21- fetch-depth : 0
2219
23- - name : Setup Node.js LTS
24- uses : actions/setup-node@v4
25- with :
26- node-version : ' lts/*'
27- env :
28- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
29-
30- - name : Setup pnpm
31- uses : pnpm/action-setup@v4
32-
33- - name : Get pnpm store directory
34- shell : bash
35- run : |
36- echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
37-
38- - name : Setup pnpm cache
39- uses : actions/cache@v4
40- with :
41- path : ${{ env.STORE_PATH }}
42- key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
43- restore-keys : |
44- ${{ runner.os }}-pnpm-store-
45-
46- - name : Install dependencies
47- run : pnpm install --frozen-lockfile
48- env :
49- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
20+ - name : Setup Node.js and pnpm
21+ uses : ./.github/actions/setup-node-pnpm
5022
5123 - name : Run rolldown stats collection
5224 run : pnpm rolldown:stats
You can’t perform that action at this time.
0 commit comments