We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7985545 commit ca9e591Copy full SHA for ca9e591
.github/workflows/ci.yml
@@ -1,13 +1,17 @@
1
name: CI
2
3
4
+
5
6
on:
7
push:
8
branches: [ "**" ]
9
pull_request:
10
11
12
13
14
15
jobs:
16
build-and-test:
17
runs-on: ubuntu-latest
@@ -19,24 +23,26 @@ jobs:
19
23
uses: actions/checkout@v4
20
24
21
25
26
27
22
28
- name: Setup Node.js
29
uses: actions/setup-node@v4
30
with:
31
node-version: ${{ matrix.node-version }}
32
33
34
35
36
- name: Install dependencies
37
run: npm ci || npm install
38
39
40
41
42
- name: Security audit
43
run: npm audit --audit-level=moderate || true
44
45
- - name: Lint
- run: npm run lint
-
46
- - name: Type check
- run: npm run type-check
47
48
+ - name: Lint
0 commit comments