We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b62dd6 commit 2e394d4Copy full SHA for 2e394d4
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,26 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ workflow_dispatch:
6
7
+permissions:
8
+ contents: read
9
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: 🛎️ Checkout code
15
+ uses: actions/checkout@v4
16
17
+ - name: 🥟 Setup Bun
18
+ uses: oven-sh/setup-bun@v2
19
+ with:
20
+ bun-version: latest
21
22
+ - name: 📦 Install dependencies
23
+ run: bun install
24
25
+ - name: 🛠️ Build project
26
+ run: bun run build
0 commit comments