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 297d5da commit cae48d8Copy full SHA for cae48d8
.github/workflows/pull_request.yml
@@ -0,0 +1,30 @@
1
+name: Pull request
2
+
3
+on:
4
+ pull_request:
5
+ branches: ['main']
6
7
+jobs:
8
+ # Build job
9
+ builddev:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v4
14
+ with:
15
+ fetch-depth: 0 # Not needed if lastUpdated is not enabled
16
+ - name: Bun
17
+ uses: oven-sh/setup-bun@v2
18
19
+ bun-version: latest
20
+ - name: Install dependencies
21
+ run: bun install
22
+ - name: Lint
23
+ run: |
24
+ bun run lint
25
+ - name: Build
26
27
+ bun run build
28
+ - name: Test
29
30
+ bun run test
0 commit comments