Skip to content

Commit

Permalink
Run prettier:check in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mroderick committed Jan 26, 2021
1 parent a8a5a68 commit da45fde
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,15 @@ jobs:
- node_modules
- *persist-step

prettier:
<<: *work-dir
docker:
- image: node
steps:
- *attach-step
- run:
name: prettier
command: npm run prettier:check
lint:
<<: *work-dir
docker:
Expand Down Expand Up @@ -78,12 +87,14 @@ jobs:
name: Test
command: npm test


workflows:
version: 2
samsam:
jobs:
- install-dependencies
- prettier:
requires:
- install-dependencies
- lint:
requires:
- install-dependencies
Expand Down

0 comments on commit da45fde

Please sign in to comment.