Add tests and CI.

This commit is contained in:
Franz Diebold 2020-07-14 12:06:58 +02:00
parent a1deed7ade
commit 932bbbde38
11 changed files with 5392 additions and 84 deletions

15
Makefile Normal file
View file

@ -0,0 +1,15 @@
.PHONY: install
install:
npm install
.PHONY: lint
lint:
npm run lint
.PHONY: test
test:
npm run test
.PHONY: build
build:
npm run build