We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aeadf39 commit 4ba6707Copy full SHA for 4ba6707
1 file changed
.github/workflows/build-axoncode.yml
@@ -0,0 +1,39 @@
1
+name: Build axoncode
2
+
3
+on:
4
+ push:
5
+ branches-ignore:
6
+ - production
7
+ pull_request:
8
9
10
+ workflow_dispatch:
11
12
+jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout repository
17
+ uses: actions/checkout@v4
18
19
+ - name: Setup Bun
20
+ uses: oven-sh/setup-bun@v1
21
+ with:
22
+ bun-version: 1.2.21
23
24
+ - name: Install dependencies
25
+ run: |
26
+ cd packages/axoncode
27
+ bun install
28
29
+ - name: Build axoncode
30
31
32
+ bun run build
33
34
+ - name: Upload dist folder
35
+ uses: actions/upload-artifact@v4
36
37
+ name: axoncode-dist
38
+ path: packages/axoncode/dist/
39
+ if-no-files-found: error
0 commit comments