We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 929a711 commit 381c45dCopy full SHA for 381c45d
2 files changed
.github/workflows/pull.yml
@@ -7,11 +7,6 @@ on:
7
- synchronize
8
paths-ignore:
9
- "*.md"
10
- push:
11
- branches-ignore:
12
- - main
13
- paths-ignore:
14
- - "*.md"
15
16
17
jobs:
.github/workflows/push.yml
@@ -0,0 +1,28 @@
1
+name: Push Workflow
2
+
3
+on:
4
+ push:
5
+ branches-ignore:
6
+ - main
+ paths-ignore:
+ - "*.md"
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v3
18
+ - name: Install Bun
19
+ uses: oven-sh/setup-bun@v2
20
+ with:
21
+ bun-version: "latest"
22
23
+ - name: Install dependencies
24
+ run: bun install
25
26
+ - name: Build typescript files
27
+ run: bun tsbuild
28
0 commit comments