forked from services/password-reset-web
init
This commit is contained in:
11
.ci.run
Normal file
11
.ci.run
Normal file
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env sh
|
||||
set -o nounset ## set -u : exit the script if you try to use an uninitialised variable
|
||||
set -o errexit ## set -e : exit the script if any statement returns a non-true return value
|
||||
set -o xtrace ## set -x : Print command traces before executing command
|
||||
|
||||
npm install --quiet
|
||||
npm run --silent build
|
||||
|
||||
# push into archive
|
||||
tar czf "$ARCHIVE/artifact.tar.gz" -C dist .
|
||||
|
||||
Reference in New Issue
Block a user