1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-15 09:34:13 +00:00
bramw_baserow/web-frontend/Makefile
2023-07-06 17:44:17 +00:00

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;