All checks were successful
Build & Test WASM / build-and-test (push) Successful in 1m45s
17 lines
331 B
Bash
Executable File
17 lines
331 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
echo "=== Building WASM ==="
|
|
"$SCRIPT_DIR/kobopatch-wasm/build.sh"
|
|
|
|
echo ""
|
|
echo "=== Running WASM integration test ==="
|
|
"$SCRIPT_DIR/kobopatch-wasm/test-integration.sh"
|
|
|
|
echo ""
|
|
echo "=== Running E2E tests (Playwright) ==="
|
|
cd "$SCRIPT_DIR/e2e"
|
|
npm test
|