We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78f85fb commit 6a18d12Copy full SHA for 6a18d12
2 files changed
.github/workflows/main.yml
@@ -28,4 +28,7 @@ jobs:
28
with:
29
node-version: ${{ matrix.node-version }}
30
- run: npm install
31
- - run: npm run test
+ - run: npm run test-without-lint
32
+ - name: run lint (node >= 6)
33
+ run: npm run lint
34
+ if: matrix.node-version >= 6
package.json
@@ -6,6 +6,7 @@
6
"scripts": {
7
"posttest": "npm run lint --silent",
8
"test": "mocha",
9
+ "test-without-lint": "mocha",
10
"lint": "eslint .",
11
"changelog": "shelljs-changelog",
12
"release:major": "shelljs-release major",
0 commit comments