15 lines
No EOL
307 B
Bash
Executable file
15 lines
No EOL
307 B
Bash
Executable file
#!/bin/bash
|
|
set -e # Exit with nonzero exit code if anything fails
|
|
|
|
echo "Preparing for deployment..."
|
|
|
|
echo "Building site..."
|
|
npm run build
|
|
|
|
echo "Commit any build artifacts..."
|
|
git add . && git commit -m "chore: build artifacts"
|
|
|
|
ech "Running tests..."
|
|
npx jest
|
|
|
|
echo "Finished preparing for deployment." |