1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-02-07 06:09:17 +00:00
bramw_baserow/web-frontend/Makefile

20 lines
266 B
Makefile

install-dependencies:
yarn install
eslint:
yarn run eslint || exit;
stylelint:
yarn run stylelint || exit;
lint: eslint stylelint
lint-javascript: lint
jest:
yarn run jest-all || exit;
test: jest
unit-test-watch:
yarn run jest test/unit --watch || exit;