feat: Implement Admin Healthy Habit Dashboard #166
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pr-check | |
on: | |
pull_request: | |
types: | |
# default types | |
- opened | |
- reopened | |
- synchronize | |
# run when PR title or body changes | |
- edited | |
branches: | |
- main | |
jobs: | |
lint-and-format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: "9.4.0" | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "lts/iron" | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Enforce linting rules | |
run: pnpm run check-lint | |
- name: Enforce formatting rules | |
run: pnpm run check-format | |
- name: Create .env file | |
run: | | |
touch .env | |
echo "MONGODB_URI=${{ secrets.MONGODB_URI }}" >> .env | |
echo "NEXTAUTH_URL=${{ secrets.NEXTAUTH_URL }}" >> .env | |
echo "NEXTAUTH_SECRET=${{ secrets.NEXTAUTH_SECRET }}" >> .env | |
echo "SCF_GMAIL=${{ secrets.SCF_GMAIL }}" >> .env | |
echo "SCF_GMAIL_APP_PASSWORD=${{ secrets.SCF_GMAIL_APP_PASSWORD }}" >> .env | |
echo "BASE_URL=${{ secrets.BASE_URL }}" >> .env | |
echo "API_KEY=${{ secrets.API_KEY }}" >> .env | |
- name: Check that project builds | |
run: pnpm run build | |
- name: Check that PR title follows conventional commits using regex | |
env: | |
TITLE: ${{ github.event.pull_request.title }} | |
run: | | |
echo "Your PR title is '$TITLE'" | |
regex="(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\([a-z[[:space:]]+\))?:[[:space:]].+" | |
if [[ $TITLE =~ $regex ]]; then | |
echo "PR title follows conventional commits" | |
else | |
echo "PR title does not follow conventional commits format" | |
echo "Prefix your PR title with a descriptor such as 'feat:' and then summarize your change" | |
echo "See the following link for more information: https://www.conventionalcommits.org/en/v1.0.0/" | |
exit 1 | |
fi |