We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ad8258 commit 9fca8acCopy full SHA for 9fca8ac
1 file changed
.github/workflows/check.yml
@@ -0,0 +1,27 @@
1
+on:
2
+ push:
3
+ branches:
4
+ - main
5
+ pull_request:
6
+
7
+jobs:
8
+ lint:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - uses: actions/setup-node@v4
13
+ with:
14
+ node-version: lts/jod
15
+ - run: npm ci
16
+ - run: npm run lint
17
+ test:
18
19
20
21
22
23
24
25
26
+ - run: npm run build
27
+ - run: npm test --workspaces
0 commit comments