Skip to content

Commit fa65ef6

Browse files
committed
Run both linters always
1 parent 9b02816 commit fa65ef6

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/lint.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,16 @@ jobs:
3131
- uses: actions/[email protected]
3232
with:
3333
fetch-depth: 0
34+
- uses: actions/setup-node@v3
35+
with:
36+
node-version: '14'
37+
- run: npm install
38+
- run: npm run lint
3439
- uses: github/super-linter/[email protected]
40+
if: always()
3541
env:
3642
ERROR_ON_MISSING_EXEC_BIT: true
3743
VALIDATE_JSCPD: false
3844
VALIDATE_JAVASCRIPT_STANDARD: false
3945
VALIDATE_ALL_CODEBASE: ${{ github.event_name == 'push' }}
4046
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41-
- uses: actions/setup-node@v3
42-
with:
43-
node-version: '14'
44-
- run: npm install
45-
- run: npm run lint

0 commit comments

Comments
 (0)