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 4907d80 commit f144141Copy full SHA for f144141
.github/workflows/bun.yml
@@ -0,0 +1,27 @@
1
+# Build with Bun, an alternative to Node.js and NPM.
2
+
3
+name: bun-types
4
5
+on:
6
+ push:
7
+ branches: [bun]
8
+ pull_request:
9
10
11
+jobs:
12
+ build:
13
+ name: build-app
14
+ runs-on: windows-latest
15
+ steps:
16
+ - name: Checkout repo
17
+ uses: actions/checkout@v4
18
+ - name: Install bun
19
+ uses: oven-sh/setup-bun@v1
20
+ with:
21
+ bun-version: latest
22
+ - name: Install dependencies
23
+ run: bun install
24
+ - name: test
25
+ run: bun run test
26
+ - name: Build app
27
+ run: bun run build
0 commit comments