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:
12
12
matrix :
13
13
node : ["18", "20", "22"]
14
14
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
17
25
with :
18
26
node-version : ${{ matrix.node }}
19
27
cache : " pnpm"
20
- - name : Setup pnpm
21
- uses : pnpm/action-setup@v4
28
+
29
+ - name : Install dependencies
30
+ run : pnpm install --frozen-lockfile
31
+
22
32
- name : Cache turbo setup
23
33
uses : actions/cache@v4
24
34
with :
25
35
path : .turbo
26
36
key : ${{ runner.os }}-turbo-${{ github.sha }}
27
37
restore-keys : |
28
38
${{ runner.os }}-turbo-
39
+
29
40
- name : Run CI with turbo
30
41
run : pnpm run ci
You can’t perform that action at this time.
0 commit comments