Skip to content

Commit

Permalink
chore(ci): Fix linting job in CircleCI
Browse files Browse the repository at this point in the history
The command being run by Circle CI would not return an error code if the linting failed
on the JS step, because it only looked at the exit code of linting the TS files.
  • Loading branch information
mt-pcuba committed Oct 23, 2024
1 parent 92ab4e3 commit f1b4812
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ jobs:
- *attach_workspace
- run:
name: Linting JavaScript
command: yarn lint
command: yarn lint:js
- run:
name: Linting TypeScript
command: yarn lint:ts

unit_test:
<<: *docker_defaults
Expand Down

0 comments on commit f1b4812

Please sign in to comment.