feat(website): add contact section to the home page #308
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: "Checks" | |
on: | |
pull_request: | |
workflow_call: | |
workflow_dispatch: | |
env: | |
SKIP_ENV_VALIDATION: true | |
jobs: | |
eslint-check: | |
name: π€ ESLint Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Environment | |
uses: ./.github/actions/env-setup | |
- name: Run ESLint | |
run: yarn lint | |
build-check: | |
name: πΏ Build Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Environment | |
uses: ./.github/actions/env-setup | |
- name: Build | |
run: yarn build | |
prisma-validate-check: | |
name: π§ Prisma Validate Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Environment | |
uses: ./.github/actions/env-setup | |
- name: Run Prisma Validate | |
run: DATABASE_URL=mongodb:// yarn run prisma validate | |
tests-check: | |
name: π§ͺ Tests Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Environment | |
uses: ./.github/actions/env-setup | |
- name: Setup Environment Variables | |
run: mv .env.example .env | |
- name: Run Tests | |
run: yarn test |