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.
1 parent 81ffe58 commit 0d821b7Copy full SHA for 0d821b7
.github/workflows/pull.yml
@@ -18,18 +18,14 @@ jobs:
18
- name: Checkout repository
19
uses: actions/checkout@v3
20
21
- - name: Install Node v22
22
- uses: actions/setup-node@v3
23
- with:
24
- node-version: 22
25
- cache: npm
26
-
27
- name: Install Bun
28
- run: npm i bun -g
+ uses: oven-sh/setup-bun@v2
+ with:
+ bun-version: "latest"
29
30
- name: Install dependencies
31
run: bun install
32
33
- name: Build typescript files
34
- run: npm run build
+ run: bun tsbuild
35
package.json
@@ -6,6 +6,7 @@
6
"scripts": {
7
"dev": "vite",
8
"build": "tsc -b && vite build",
9
+ "tsbuild": "tsc -b && vite build",
10
"lint": "eslint .",
11
"preview": "vite preview",
12
"test": "npx tailwindcss init"
0 commit comments