16 lines
No EOL
304 B
Bash
Executable file
16 lines
No EOL
304 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." |