mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-11-25 17:06:52 +01:00
8 lines
154 B
Makefile
8 lines
154 B
Makefile
|
|
EXAMPLES = $(foreach EXAMPLE, $(wildcard examples/*.js), $(EXAMPLE))
|
|
|
|
.PHONY: test
|
|
test: $(EXAMPLES)
|
|
|
|
.PHONY: $(EXAMPLES)
|
|
$(EXAMPLES): ; node $@ && echo
|