avm-runner-background/tests/web/build_test_project.sh
2022-02-18 19:48:33 +03:00

15 lines
225 B
Bash
Executable File

#!/bin/sh
set -e
# set current working directory to script directory to run script from everywhere
cd "$(dirname "$0")"
(
cd test-project
npm i
npm run install:local
npm run copy-public
npm run build
)