mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 01:30:10 +08:00
16 lines
193 B
Makefile
16 lines
193 B
Makefile
build:
|
|
node-waf build
|
|
|
|
clean:
|
|
node-waf clean
|
|
|
|
ifndef only
|
|
test: build
|
|
@expresso -I lib test/*.test.js
|
|
else
|
|
test: build
|
|
@expresso -I lib test/${only}.test.js
|
|
endif
|
|
|
|
.PHONY: build clean test
|