9842cc6164
add .nvmrc docker nodejs build in a folder on the ephemeral disk so we don't interfere with lib and node_modules folders
12 lines
147 B
Bash
Executable File
12 lines
147 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
if [[ -d /var/code/src ]]; then
|
|
cp -R /var/code/{src,test,*.js,*.json} .
|
|
fi
|
|
|
|
npm i
|
|
npm run build
|
|
npm run test-debug
|