mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-28 14:32:26 +00:00
26 lines
423 B
Makefile
26 lines
423 B
Makefile
install-dependencies:
|
|
yarn install
|
|
|
|
eslint:
|
|
yarn run eslint || exit;
|
|
|
|
stylelint:
|
|
yarn run stylelint && yarn run prettier --check modules/**/*.scss || exit;
|
|
|
|
format-scss:
|
|
yarn run prettier --write modules/**/*.scss || exit;
|
|
|
|
lint: eslint stylelint
|
|
|
|
lint-javascript: lint
|
|
|
|
jest:
|
|
yarn test || exit;
|
|
|
|
test: jest
|
|
|
|
ci-test-javascript:
|
|
yarn test-coverage || exit;
|
|
|
|
update-snapshots:
|
|
yarn run jest --updateSnapshot || exit;
|