Before you submit a pull request, ensure you follow the testing and linting instructions below.
Note
We use Task to automate our development workflow. You can use task --list-all to see all
available tasks.
To run all tests:
task testYou can also run specific unit tests with task tests:<test>, where <test> is the name of the
test you want to run.
To run all linting checks:
task lint:checkYou can also run specific linting checks with task lint:<check>, where <check> is the name of
check you want to run.
To clean up any generated files:
task clean