We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
build
1 parent f75513f commit 15d8eb9Copy full SHA for 15d8eb9
.github/workflows/release.yml
@@ -22,23 +22,26 @@ jobs:
22
with:
23
fetch-depth: 0
24
25
+ - name: Using pnpm
26
+ uses: pnpm/action-setup@v3
27
+ with:
28
+ version: 8.15.4
29
+
30
- name: Setup Node
31
uses: actions/setup-node@v4
32
33
node-version: 20
34
cache: pnpm
35
- - name: Using pnpm
- uses: pnpm/action-setup@v3
- with:
- version: 8.15.4
-
36
- name: Install dependencies
37
run: pnpm install
38
39
- name: Check and fix vulnerabilities
40
run: pnpm audit --fix
41
42
+ - name: Build
43
+ run: pnpm build
44
45
- name: Publish
46
env:
47
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments