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

16 lines
No EOL
305 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"
echo "Running tests..."
npx jest
echo "Finished preparing for deployment."