mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-15 09:34:13 +00:00
23 lines
363 B
Makefile
23 lines
363 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;
|