mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
21 lines
200 B
Makefile
21 lines
200 B
Makefile
#
|
|
# Vars
|
|
#
|
|
|
|
BIN = ./node_modules/.bin
|
|
|
|
#
|
|
# Tasks
|
|
#
|
|
|
|
node_modules: package.json
|
|
@npm install
|
|
|
|
test: node_modules
|
|
@${BIN}/tape test/*
|
|
|
|
validate: node_modules
|
|
@${BIN}/standard
|
|
|
|
.PHONY: test validate
|