Skip to content

Commit 3180c75

Browse files
Update CI workflows to use bun and checkout action v4
1 parent 0d76a21 commit 3180c75

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
deploy:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
13-
- run: yarn
14-
- run: yarn lint
15-
- run: yarn tsc
16-
- run: yarn test
12+
- uses: actions/checkout@v4
13+
- run: bun install
14+
- run: bun lint
15+
- run: bun tsc
16+
- run: bun run test

.github/workflows/pull-request.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
checks:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
13-
- run: yarn
14-
- run: yarn lint
15-
- run: yarn tsc
16-
- run: yarn test
12+
- uses: actions/checkout@v4
13+
- run: bun install
14+
- run: bun lint
15+
- run: bun tsc
16+
- run: bun run test

0 commit comments

Comments
 (0)