Skip to content

Commit

Permalink
feat: add stylelint to ci explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
alichherawalla committed Sep 4, 2024
1 parent 9c07581 commit 3da0086
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: yarn

- name: Lint
run: yarn lint
run: yarn lint && yarn stylelint **/*.js

- name: Test and generate coverage report
uses: artiomtr/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"start": "next start",
"test": "jest --coverage",
"test:ci": "jest --ci",
"lint": "yarn lint:js && yarn lint:css",
"lint": "yarn lint:js",
"lint:css": "yarn stylelint **/*.js",
"lint:eslint": "eslint --ignore-path .eslintignore ",
"lint:eslint:fix": "eslint --ignore-path .eslintignore --fix",
Expand Down

0 comments on commit 3da0086

Please sign in to comment.