File tree Expand file tree Collapse file tree 5 files changed +145
-207
lines changed Expand file tree Collapse file tree 5 files changed +145
-207
lines changed Original file line number Diff line number Diff line change 5
5
pull_request :
6
6
branches : [main]
7
7
jobs :
8
+ lint :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Git checkout
12
+ uses : actions/checkout@v3
13
+ - name : Setup Node.js
14
+ uses : actions/setup-node@v3
15
+ with :
16
+ node-version : ' lts/*'
17
+ cache : npm
18
+ - name : Install dependencies
19
+ run : npm ci
20
+ - name : Linting
21
+ run : npm run format:ci
8
22
build :
9
23
runs-on : ${{ matrix.os }}
10
24
strategy :
25
39
with :
26
40
node-version : ${{ matrix.node-version }}
27
41
cache : npm
28
- check-latest : true
29
42
- name : Install dependencies
30
43
run : npm ci
31
- - name : Linting
32
- run : npm run format:ci
33
44
- name : Building
34
45
run : npm run build
35
46
- name : Tests
Original file line number Diff line number Diff line change 1
1
dist
2
2
node_modules /
3
3
.eslintcache
4
+ coverage /
You can’t perform that action at this time.
0 commit comments