Skip to content

Commit 1317c02

Browse files
authored
chore: use Bun as a package manager (#13)
* chore: use Bun as a package manager * fix the `prerelease` command * fix the CI
1 parent 97b5a79 commit 1317c02

File tree

5 files changed

+1649
-10940
lines changed

5 files changed

+1649
-10940
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,12 @@ jobs:
1111
defaults:
1212
run:
1313
working-directory: ./
14-
strategy:
15-
matrix:
16-
node: [20, 22]
1714
steps:
1815
- uses: actions/checkout@v4
19-
- uses: actions/setup-node@v4
16+
- uses: oven-sh/setup-bun@v1
2017
with:
21-
node-version: ${{ matrix.node }}
22-
- run: npm install
23-
- run: npx playwright install --with-deps
24-
- run: npm run build
25-
- run: npm run test
18+
bun-version: 1.2.8
19+
- run: bun install
20+
- run: bunx playwright install --with-deps
21+
- run: bun run build
22+
- run: bun run test

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
node_modules
2-
bun.lock
32
.wrangler
43
.mf
54
*.tgz
65
dist
76
.DS_Store
7+
package-lock.json

0 commit comments

Comments
 (0)