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 7b18434 commit 83392ffCopy full SHA for 83392ff
.github/workflows/pr-checks.yml
@@ -6,9 +6,8 @@ on:
6
- main
7
8
jobs:
9
- lint-and-build:
+ lint:
10
runs-on: ubuntu-latest
11
-
12
steps:
13
- name: Checkout repository
14
uses: actions/checkout@v4
@@ -25,6 +24,21 @@ jobs:
25
24
- name: Run Biome check (no autofix)
26
run: npm run check:ci
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
0 commit comments