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 04d461f commit 7b18434Copy full SHA for 7b18434
.github/workflows/pr-checks.yml
@@ -0,0 +1,32 @@
1
+name: PR Checks
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ lint-and-build:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout repository
14
+ uses: actions/checkout@v4
15
16
+ - name: Set up Node.js
17
+ uses: actions/setup-node@v4
18
+ with:
19
+ node-version: 20
20
+ cache: npm
21
22
+ - name: Install dependencies
23
+ run: npm ci
24
25
+ - name: Run Biome check (no autofix)
26
+ run: npm run check:ci
27
28
+ - name: Build library
29
+ run: npm run build:lib
30
31
+ - name: Build demo
32
+ run: npm run build:demo
0 commit comments