File tree Expand file tree Collapse file tree 1 file changed +27
-3
lines changed Expand file tree Collapse file tree 1 file changed +27
-3
lines changed Original file line number Diff line number Diff line change 18
18
Deploy-Deployment :
19
19
runs-on : ubuntu-latest
20
20
steps :
21
- - uses : actions/checkout@v4
22
- - name : Setup Continuous integration
23
- uses : ./.github/cache
21
+ - name : Install Node.js
22
+ uses : actions/setup-node@v4
23
+ with :
24
+ node-version : 20
25
+
26
+ - uses : pnpm/action-setup@v4
27
+
28
+ - name : Get pnpm store directory
29
+ shell : bash
30
+ run : |
31
+ echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
32
+
33
+ - uses : actions/cache@v4
34
+ name : Setup pnpm cache
35
+ with :
36
+ path : ${{ env.STORE_PATH }}
37
+ key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
38
+ restore-keys : |
39
+ ${{ runner.os }}-pnpm-store-
40
+
41
+ - name : Enable corepack
42
+ run : corepack enable
43
+
44
+ - name : Install dependencies
45
+ run : pnpm install
46
+ shell : bash
47
+
24
48
- name : Install Vercel CLI
25
49
run : pnpm install --global vercel@latest
26
50
- name : Pull Vercel Environment Information
You can’t perform that action at this time.
0 commit comments