Makefile 370 B

1234567891011121314151617181920212223
  1. default: test-install test-run
  2. test-install:
  3. npm install --no-fund
  4. test-run:
  5. npx mocha -t 10000
  6. find-flakey-tests:
  7. echo "Running test-run infinately"
  8. sh -c "while make test-run; do :; done"
  9. nginx:
  10. podman-compose up -d nginx
  11. clean:
  12. podman-compose down
  13. getsnapshot:
  14. rm -rf /opt/OliveTin-snapshot/*
  15. gh run download -D /opt/OliveTin-snapshot/
  16. .PHONY: default