* testing

* try playwrigth

* testing

* add pr support

* not on each commit
This commit is contained in:
2022-07-19 14:12:51 +02:00
committed by GitHub
parent a5d98b76bd
commit 786878a3e4
11 changed files with 153 additions and 17 deletions

View File

@@ -4,9 +4,18 @@
"dev:backend": "cd backend && cargo watch -x 'run --bin cryptgeon'",
"dev:front": "pnpm --prefix frontend run dev",
"dev:proxy": "node proxy.mjs",
"dev": "run-p dev:*"
"dev": "run-p dev:*",
"test": "playwright test",
"ci:server": "run-p ci:server:*",
"ci:server:backend": "cd backend && cargo run",
"ci:server:front": "pnpm --prefix frontend run preview",
"ci:server:proxy": "node proxy.mjs",
"ci:prepare": "run-p ci:prepare:*",
"ci:prepare:backend": "cd backend && cargo build",
"ci:prepare:front": "pnpm --prefix frontend install && pnpm --prefix frontend run build"
},
"devDependencies": {
"@playwright/test": "^1.23.4",
"http-proxy": "^1.18.1",
"npm-run-all": "^4.1.5"
}