Fix wrong notes api route path #48
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: CI | |
on: push | |
jobs: | |
ci: | |
name: Type Checking, Linting | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
# TODO: Update environment variables with your own database credentials | |
env: | |
PGHOST: localhost | |
PGDATABASE: expo_example_fall_2024 | |
PGUSERNAME: expo_example_fall_2024 | |
PGPASSWORD: expo_example_fall_2024 | |
steps: | |
- name: Start preinstalled PostgreSQL on Ubuntu | |
run: | | |
sudo systemctl start postgresql.service | |
pg_isready | |
- name: Create database user | |
run: | | |
sudo -u postgres psql --command="CREATE USER $PGUSERNAME PASSWORD '$PGPASSWORD'" --command="\du" | |
- name: Create database and allow user | |
run: | | |
sudo -u postgres createdb --owner=$PGUSERNAME $PGDATABASE | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Run database migrations | |
run: pnpm migrate up | |
- name: Generate typedRoutes TS types | |
run: pnpm expo customize tsconfig.json | |
- name: Check TypeScript Types | |
run: pnpm tsc | |
- name: Lint with ESLint | |
run: pnpm eslint . --max-warnings 0 |