aaronjy-me/util/pre-deploy.sh
2024-03-22 17:29:10 +00:00

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."