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 bfba1e7 commit f896a6fCopy full SHA for f896a6f
.github/workflows/nodejs.yml
@@ -25,8 +25,12 @@ jobs:
25
node-version: ${{ matrix.node-version }}
26
27
- run: 'npm ci'
28
- - run: 'npm run lint'
29
- - run: 'npm run markdownlint'
+ - name: Lint
+ if: ${{ matrix.node-version != '10.x' }}
30
+ run: 'npm run lint'
31
+ - name: Markdownlint
32
33
+ run: 'npm run markdownlint'
34
- run: 'npm run build'
35
- run: 'DISABLE_LOGGING=1 npm run cover'
36
- run: 'npx nyc report --reporter=lcov > coverage.lcov && npx codecov'
0 commit comments