node-eventstore-client/build-and-test.sh
Nicolas Dextraze 9842cc6164 fix npm audit (except nodeunit)
add .nvmrc
docker nodejs build in a folder on the ephemeral disk so we don't interfere with lib and node_modules folders
2023-01-30 14:49:45 -05:00

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