We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78a5a94 commit 11760a4Copy full SHA for 11760a4
.github/workflows/release.yml
@@ -11,27 +11,20 @@ jobs:
11
steps:
12
- uses: actions/checkout@v3
13
14
- - name: Install pnpm
15
- uses: pnpm/action-setup@v2
16
- with:
17
- version: 8
18
-
19
- - name: Setup Node.js environment
20
- uses: actions/setup-node@v3
21
22
- node-version: '18'
+ - name: Install bun
+ uses: oven-sh/setup-bun@v1
23
24
- name: Install deps
25
- run: pnpm install
+ run: bun i
26
27
- name: Lint
28
- run: pnpm run lint
+ run: bun run lint
29
30
- name: Test
31
- run: pnpm run test
+ run: bun run test
32
33
- name: release
34
- run: pnpm run release
+ run: bun run release
35
env:
36
GH_TOKEN: ${{ secrets.GH_TOKEN }}
37
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments