17 lines
182 B
Makefile
Raw Normal View History

2019-09-20 08:11:20 +05:30
all: test
clean:
@rm -rf build/results/
lint:
@node build/lint.js
test: clean lint
@node build/test.js
test-all:
@NODE_TEST_NO_SKIP=1 make test
test-full:
@./build/full.sh