mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-23 04:11:06 +07:00
17 lines
182 B
Makefile
17 lines
182 B
Makefile
|
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
|