CircleCI Lint Test fails after I lint code locally

Viewed 71

I am new to CircleCI and working on a project that runs CirclCI on GitHub whenever code is pushed to the remote repo.

Before pushing, I run yarn lint and I still get a failing test from CircleCI. err

Also, just to be clear, when I run yarn lint there are no changes that are shown in my git locally. It is green displaying no changes were made by the linting.

branch

CircleCI HomePage: enter image description here

Additional Context:

I am running a Mac and CI is running Linux.

1 Answers

Run yarn prettier --check . to solve this problem.

Related