We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 04d461f + 83392ff commit f58afc4Copy full SHA for f58afc4
1 file changed
.github/workflows/pr-checks.yml
@@ -0,0 +1,46 @@
1
+name: PR Checks
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ lint:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v4
14
15
+ - name: Set up Node.js
16
+ uses: actions/setup-node@v4
17
+ with:
18
+ node-version: 20
19
+ cache: npm
20
21
+ - name: Install dependencies
22
+ run: npm ci
23
24
+ - name: Run Biome check (no autofix)
25
+ run: npm run check:ci
26
27
+ build:
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
+ - name: Build library
43
+ run: npm run build:lib
44
45
+ - name: Build demo
46
+ run: npm run build:demo
0 commit comments