Skip to content

Commit

Permalink
Merge pull request #77 from MastersAcademy/0-fix_linters
Browse files Browse the repository at this point in the history
fix linter job
  • Loading branch information
MZabolotnev authored Oct 18, 2023
2 parents 67aa477 + a005dad commit 4b4a4cf
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .github/workflows/awesome-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,29 @@ jobs:
with:
node-version: 14.18.1
- run: npm install --production
- run: npm run lint:all
- run: npm run lint:js

lint-css:
name: Lint CSS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14.18.1
- run: npm install --production
- run: npm run lint:css

lint-html:
name: Lint HTML
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14.18.1
- run: npm install --production
- run: npm run lint:html

lint-branch-name:
name: Validate branch name
Expand Down

0 comments on commit 4b4a4cf

Please sign in to comment.