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 610228a commit 81ffe58Copy full SHA for 81ffe58
.github/workflows/pull.yml
@@ -0,0 +1,35 @@
1
+name: Pull Request Workflow
2
+
3
+on:
4
+ pull_request:
5
+ types:
6
+ - opened
7
+ - synchronize
8
+ paths-ignore:
9
+ - "*.md"
10
+ push:
11
+ branches:
12
+ - feats/workflows/pull
13
14
+jobs:
15
+ build:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Checkout repository
19
+ uses: actions/checkout@v3
20
21
+ - name: Install Node v22
22
+ uses: actions/setup-node@v3
23
+ with:
24
+ node-version: 22
25
+ cache: npm
26
27
+ - name: Install Bun
28
+ run: npm i bun -g
29
30
+ - name: Install dependencies
31
+ run: bun install
32
33
+ - name: Build typescript files
34
+ run: npm run build
35
0 commit comments