Makefile 141 B

1234567891011
  1. .PHONY: clean
  2. clean:
  3. rm -rf node_modules
  4. node_modules:
  5. npm ci
  6. .PHONY: test
  7. ## Run tests
  8. test: node_modules
  9. bash run_integration_test.sh