File tree Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change 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+ runs-on : ubuntu-latest
29+ steps :
30+ - name : Checkout repository
31+ uses : actions/checkout@v4
32+
33+ - name : Set up Node.js
34+ uses : actions/setup-node@v4
35+ with :
36+ node-version : 20
37+ cache : npm
38+
39+ - name : Install dependencies
40+ run : npm ci
41+
42+ - name : Build library
43+ run : npm run build:lib
44+
45+ - name : Build demo
46+ run : npm run build:demo
You can’t perform that action at this time.
0 commit comments