Skip to content

Commit 1bc492d

Browse files
chore: gh actions to bun
1 parent c266699 commit 1bc492d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
uses: ./.github/actions/setup
2727

2828
- name: Lint files
29-
run: yarn lint
29+
run: bun lint
3030

3131
- name: Typecheck files
32-
run: yarn typecheck
32+
run: bun typecheck
3333

3434
test:
3535
runs-on: ubuntu-latest
@@ -42,7 +42,7 @@ jobs:
4242
uses: ./.github/actions/setup
4343

4444
- name: Run unit tests
45-
run: yarn test --maxWorkers=2 --coverage
45+
run: bun test --maxWorkers=2 --coverage
4646

4747
build-library:
4848
runs-on: ubuntu-latest
@@ -55,7 +55,7 @@ jobs:
5555
uses: ./.github/actions/setup
5656

5757
- name: Build package
58-
run: yarn prepare
58+
run: bun prepare
5959

6060
build-web:
6161
runs-on: ubuntu-latest
@@ -69,4 +69,4 @@ jobs:
6969

7070
- name: Build example for Web
7171
run: |
72-
yarn example expo export --platform web
72+
bun example expo export --platform web

0 commit comments

Comments
 (0)