mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-01-30 18:36:29 +00:00
15 lines
179 B
Makefile
15 lines
179 B
Makefile
install-dependencies:
|
|
yarn install
|
|
|
|
eslint:
|
|
yarn run eslint || exit;
|
|
|
|
stylelint:
|
|
yarn run stylelint || exit;
|
|
|
|
lint: eslint stylelint
|
|
|
|
jest:
|
|
yarn run jest || exit;
|
|
|
|
test: jest
|