mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-02-06 22:00:09 +00:00
15 lines
183 B
Makefile
15 lines
183 B
Makefile
install-dependencies:
|
|
yarn install
|
|
|
|
eslint:
|
|
yarn run eslint || exit;
|
|
|
|
stylelint:
|
|
yarn run stylelint || exit;
|
|
|
|
lint: eslint stylelint
|
|
|
|
jest:
|
|
yarn run jest-all || exit;
|
|
|
|
test: jest
|