Makefile 198 B

123456789101112
  1. SHELL = /bin/bash
  2. .PHONY: build
  3. build: node_modules
  4. npm run build
  5. .PHONY: test
  6. test: node_modules
  7. docker-compose run --rm -e BASE_URL=http://webdav test npm run test
  8. node_modules:
  9. npm install