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 748a3b7 commit 765bfdbCopy full SHA for 765bfdb
.github/workflows/ci.yml
@@ -15,6 +15,16 @@ on:
15
16
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
17
jobs:
18
+ lint:
19
+ name: "Lint"
20
+ runs-on: ubuntu-latest
21
+
22
+ steps:
23
+ - name: lint
24
+ run: npm run lint
25
+ env:
26
+ CI: true
27
28
test:
29
name: 'Node ${{ matrix.node }} - ${{ matrix.os }}'
30
runs-on: ${{ matrix.os }}-latest
@@ -31,10 +41,6 @@ jobs:
31
41
node-version: ${{ matrix.node }}
32
42
- name: install dependencies
33
43
run: npm i
34
- - name: lint
35
- run: npm run lint
36
- env:
37
- CI: true
38
44
- name: test
39
45
run: npm test
40
46
env:
0 commit comments