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 3a13279 commit fb05c2dCopy full SHA for fb05c2d
.github/workflows/lint.yml
@@ -0,0 +1,17 @@
1
+name: Lint
2
+
3
+on: [push]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v1
10
+ - name: Use Node.js 12
11
+ uses: actions/setup-node@v1
12
+ with:
13
+ node-version: 12
14
+ - name: npm install
15
+ run: npm install
16
+ - name: npm run lint
17
+ run: npm run lint
.travis.yml
@@ -69,7 +69,6 @@ install:
69
- npm run rebuild
70
71
script:
72
-- npm run lint
73
- npm test
74
75
# if publishing, do it
appveyor.yml
@@ -47,7 +47,6 @@ build_script:
47
48
49
test_script:
50
51
52
53
- ps: >
0 commit comments