mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-02-06 22:00:09 +00:00
20 lines
266 B
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;
|