aaronjy-me/util/pre-deploy.sh
Aaron Yarborough 3d443e421c test: fix tests
2024-03-22 17:31:14 +00:00

18 lines
No EOL
313 B
Bash
Executable file

#!/bin/bash
set -e # Exit with nonzero exit code if anything fails
echo "Preparing for deployment..."
echo "- Running tests..."
npx jest
echo "- Building site..."
npm run build
echo "- Commit any build artifacts..."
git add .
git commit -m "chore: build artifacts"
echo "Finished preparing for deployment."