mirror of
https://github.com/kairos-io/kairos-agent.git
synced 2025-04-27 03:11:14 +00:00
12 lines
209 B
Bash
Executable File
12 lines
209 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
# Run agent in the background to bring the webui up
|
|
/usr/bin/kairos-agent webui &
|
|
|
|
pushd internal/webui/public || exit 1
|
|
# deps
|
|
npm ci
|
|
# cypress tests
|
|
npx cypress run --e2e -q
|
|
popd || exit |