File tree Expand file tree Collapse file tree 3 files changed +12
-11
lines changed Expand file tree Collapse file tree 3 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -15,23 +15,23 @@ jobs:
15
15
uses : actions/checkout@v4
16
16
with :
17
17
fetch-depth : 0
18
- - uses : pnpm/action-setup@v3
18
+ - name : Setup Bun
19
+ uses : oven-sh/setup-bun@v1
19
20
with :
20
- version : 7
21
+ bun- version : latest
21
22
- name : Use Node.js ${{ matrix.node-version }}
22
23
uses : actions/setup-node@v4
23
24
with :
24
25
node-version : ${{ matrix.node-version }}
25
- cache : " pnpm"
26
26
- name : Install dependencies
27
27
run : |
28
- pnpm install
28
+ bun install
29
29
- name : Build
30
30
run : |
31
- pnpm run build --if-present
31
+ bun run build --if-present
32
32
- name : Run tests
33
33
run : |
34
- pnpm run test
34
+ bun run test
35
35
- name : Release
36
36
env :
37
37
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -13,17 +13,18 @@ jobs:
13
13
uses : actions/checkout@v4
14
14
with :
15
15
fetch-depth : 0
16
- - uses : pnpm/action-setup@v3
16
+ - name : Install Bun
17
+ uses : oven-sh/setup-bun@v1
17
18
with :
18
- version : 7
19
+ bun- version : latest
19
20
- name : Use Node.js ${{ matrix.node-version }}
20
21
uses : actions/setup-node@v4
21
22
with :
22
23
node-version : ${{ matrix.node-version }}
23
- cache : " pnpm "
24
+ cache : " bun "
24
25
- name : Install dependencies
25
26
run : |
26
- pnpm install
27
+ bun install
27
28
- name : Run tests
28
29
run : |
29
- pnpm run test
30
+ bun run test
You can’t perform that action at this time.
0 commit comments