We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
bun
1 parent 735a713 commit 82a94acCopy full SHA for 82a94ac
2 files changed
.github/workflows/ci.yml
@@ -12,17 +12,13 @@ jobs:
12
13
steps:
14
- uses: actions/checkout@v4
15
-
16
- - name: Use Node.js
17
- uses: actions/setup-node@v4
18
- with:
19
- node-version: '22'
+ - uses: oven-sh/setup-bun@v2
20
21
- name: Install dependencies
22
- run: 'npm ci'
+ run: 'bun install'
23
24
- name: Run lint
25
- run: 'npm run lint'
+ run: 'bun run lint'
26
27
- name: Run build
28
- run: 'npm run build'
+ run: 'bun run build'
.gitignore
@@ -3,6 +3,7 @@ node_modules/
3
pnpm-lock.yaml
4
package-lock.json
5
yarn.lock
6
+bun.lock
7
8
# Build output
9
dist/
0 commit comments