mirror of
https://github.com/github/codeql-action
synced 2026-05-25 15:00:36 +03: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
|