1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-28 14:32:26 +00:00
bramw_baserow/web-frontend/Makefile
Davide Silvestri d55ac7ccd4 🔍 2️⃣ - UI for advanced filtering
2023-10-19 11:09:25 +00:00

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;