File tree Expand file tree Collapse file tree 1 file changed +5
-12
lines changed Expand file tree Collapse file tree 1 file changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Deploy to Pages
2
2
3
3
on :
4
4
push :
5
- branches : [' main' ]
5
+ branches : [" main" ]
6
6
workflow_dispatch :
7
7
8
8
permissions :
@@ -11,33 +11,26 @@ permissions:
11
11
id-token : write
12
12
13
13
concurrency :
14
- group : ' pages'
14
+ group : " pages"
15
15
cancel-in-progress : false
16
16
17
17
env :
18
- BUILD_PATH : ' . '
18
+ BUILD_PATH : " . "
19
19
20
20
jobs :
21
21
build :
22
22
name : Build
23
23
runs-on : ubuntu-latest
24
24
steps :
25
- - name : Checkout
26
- uses : actions/checkout@v4
27
- - uses : pnpm/action-setup@v4
28
- with :
29
- version : 9
30
25
- name : Setup Node
31
26
uses : actions/setup-node@v4
32
27
with :
33
- node-version : ' 20'
34
- cache : pnpm
35
- cache-dependency-path : pnpm-lock.yaml
28
+ node-version : " 20"
36
29
- name : Setup Pages
37
30
id : pages
38
31
uses : actions/configure-pages@v5
39
32
- name : Install dependencies
40
- run : pnpm i --frozen-lockfile
33
+ run : corepack enable && pnpm i --frozen-lockfile
41
34
working-directory : ${{ env.BUILD_PATH }}
42
35
- name : Build
43
36
run : |
You can’t perform that action at this time.
0 commit comments