mirror of
https://github.com/OliveTin/OliveTin
synced 2026-09-19 00:05:40 +00:00
* More screenshots link * bugfix: wip * cicd: Test flakey tests * cicd: more tests * cicd: more tests * cicd: Try a 10s timeout * cicd: Better debugging of process start / stop * cicd: Better debugging of process start / stop * cicd: Possibly unflaky tests
20 lines
289 B
Makefile
20 lines
289 B
Makefile
default: test-install test-run
|
|
|
|
test-install:
|
|
npm install --no-fund
|
|
|
|
test-run:
|
|
./node_modules/.bin/mocha -t 10000
|
|
|
|
nginx:
|
|
podman-compose up -d nginx
|
|
|
|
clean:
|
|
podman-compose down
|
|
|
|
getsnapshot:
|
|
rm -rf /opt/OliveTin-snapshot/*
|
|
gh run download -D /opt/OliveTin-snapshot/
|
|
|
|
.PHONY: default
|