We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12f2ee7 commit 3a53d23Copy full SHA for 3a53d23
.github/workflows/release.yml
@@ -18,13 +18,19 @@ jobs:
18
- uses: actions/setup-node@v4
19
with:
20
node-version: 20
21
- - run: yarn install
+ cache: 'pnpm'
22
+ - name: Install pnpm
23
+ uses: pnpm/action-setup@v4
24
+ with:
25
+ version: 10
26
+ - name: Install dependencies
27
+ run: pnpm install
28
- name: Running tests
- run: yarn run test
29
+ run: pnpm run test
30
- name: Building
- run: yarn run build
31
+ run: pnpm run build
32
- name: Running audit
- run: yarn audit signatures
33
+ run: pnpm audit
34
- name: Semantic release
35
run: npx semantic-release
36
env:
0 commit comments