File tree Expand file tree Collapse file tree 1 file changed +15
-4
lines changed
Expand file tree Collapse file tree 1 file changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -12,19 +12,30 @@ jobs:
1212 matrix :
1313 node : ["18", "20", "22"]
1414 steps :
15- - uses : actions/checkout@v4
16- - uses : actions/setup-node@v4
15+ - name : Checkout
16+ uses : actions/checkout@v4
17+
18+ - name : Setup pnpm
19+ uses : pnpm/action-setup@v4
20+ with :
21+ run_install : false
22+
23+ - name : Install node
24+ uses : actions/setup-node@v4
1725 with :
1826 node-version : ${{ matrix.node }}
1927 cache : " pnpm"
20- - name : Setup pnpm
21- uses : pnpm/action-setup@v4
28+
29+ - name : Install dependencies
30+ run : pnpm install --frozen-lockfile
31+
2232 - name : Cache turbo setup
2333 uses : actions/cache@v4
2434 with :
2535 path : .turbo
2636 key : ${{ runner.os }}-turbo-${{ github.sha }}
2737 restore-keys : |
2838 ${{ runner.os }}-turbo-
39+
2940 - name : Run CI with turbo
3041 run : pnpm run ci
You can’t perform that action at this time.
0 commit comments