File tree Expand file tree Collapse file tree 5 files changed +2395
-3876
lines changed Expand file tree Collapse file tree 5 files changed +2395
-3876
lines changed Original file line number Diff line number Diff line change @@ -15,19 +15,25 @@ jobs:
15
15
- name : Checkout Repo
16
16
uses : actions/checkout@v3
17
17
18
- - name : Setup Node.js 20.x
19
- uses : actions/setup-node@v3
18
+ - name : Setup pnpm
19
+ uses : pnpm/action-setup@v4
20
20
with :
21
- node-version : 20.x
21
+ run_install : false
22
22
23
- - name : Install Dependencies
24
- run : npm install
23
+ - name : Setup node
24
+ uses : actions/setup-node@v4
25
+ with :
26
+ node-version : 20
27
+ cache : ' pnpm'
28
+
29
+ - name : Install dependencies
30
+ run : pnpm install
25
31
26
- - name : Create Release Pull Request or Publish to npm
32
+ - name : Create PR or publish to npm
27
33
id : changesets
28
34
uses : changesets/action@v1
29
35
with :
30
- publish : npm run release
36
+ publish : pnpm run release
31
37
env :
32
38
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
33
39
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
You can’t perform that action at this time.
0 commit comments