File tree Expand file tree Collapse file tree 3 files changed +13
-20
lines changed Expand file tree Collapse file tree 3 files changed +13
-20
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,15 @@ jobs:
13
13
contents : write
14
14
steps :
15
15
- uses : actions/checkout@v4
16
+ - uses : pnpm/action-setup@v3
17
+ with :
18
+ version : 8
16
19
- uses : actions/setup-node@v4
17
20
with :
18
21
node-version : 20
19
- cache : " npm "
20
- - run : npm install
21
- - run : npm run build
22
+ cache : " pnpm "
23
+ - run : pnpm install
24
+ - run : pnpm run build
22
25
- uses : JamesIves/github-pages-deploy-action@v4
23
26
name : Deploy to gh-pages
24
27
with :
Original file line number Diff line number Diff line change @@ -11,22 +11,12 @@ jobs:
11
11
node-version : [18, 20]
12
12
steps :
13
13
- uses : actions/checkout@v4
14
+ - uses : pnpm/action-setup@v3
15
+ with :
16
+ version : 8
14
17
- uses : actions/setup-node@v4
15
18
with :
16
19
node-version : ${{ matrix.node-version }}
17
- cache : " npm"
18
- - run : npm install
19
- - run : npm run build
20
- analyze :
21
- name : Analyze using CodeQL
22
- runs-on : ubuntu-latest
23
- permissions :
24
- actions : read
25
- contents : read
26
- security-events : write
27
- steps :
28
- - uses : actions/checkout@v4
29
- - uses : github/codeql-action/init@v3
30
- with :
31
- languages : " javascript"
32
- - uses : github/codeql-action/analyze@v3
20
+ cache : " pnpm"
21
+ - run : pnpm install
22
+ - run : pnpm run build
Original file line number Diff line number Diff line change 16
16
- id : mixed-line-ending
17
17
18
18
- repo : https://github.com/python-jsonschema/check-jsonschema
19
- rev : 0.27.3
19
+ rev : 0.28.0
20
20
hooks :
21
21
- id : check-github-workflows
22
22
ci :
You can’t perform that action at this time.
0 commit comments