We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f6ad29 commit f3efd70Copy full SHA for f3efd70
.github/workflows/build-and-deploy.yml
@@ -10,13 +10,12 @@ jobs:
10
timeout-minutes: 3
11
runs-on: ubuntu-latest
12
steps:
13
- - name: Checkout
14
- uses: actions/checkout@v5
+ - uses: actions/checkout@v5
+ - uses: oven-sh/bun@v2
15
16
- - name: Install and Build
17
- run: |
18
- yarn install
19
- yarn build
+ - run: bun install
+
+ - run: bun run build
20
21
- name: Deploy 🚀
22
uses: JamesIves/github-pages-deploy-action@v4
README.md
@@ -3,12 +3,12 @@
3
4
#### Dev:
5
```sh
6
-yarn dev
+bun dev
7
```
8
9
#### Build:
-yarn build
+bun run build
---
0 commit comments