11 lines
128 B
Makefile
11 lines
128 B
Makefile
|
all: clean
|
||
|
npm install
|
||
|
|
||
|
test: all
|
||
|
mocha test
|
||
|
|
||
|
ci: all
|
||
|
mocha --reporter xunit test > mocha.xml
|
||
|
|
||
|
clean:
|
||
|
rm -rf implementations
|