Skip to content

Landlord Listing Form + Unit Details Updates #211

Landlord Listing Form + Unit Details Updates

Landlord Listing Form + Unit Details Updates #211

Workflow file for this run

name: Lint and Style Checks
on:
pull_request:
branches:
- main
jobs:
backend:
name: Backend
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Install bun
uses: oven-sh/setup-bun@v1
- name: Run checks
working-directory: backend
run: |
bun install --ignore-scripts
bun run lint-check
frontend:
name: Frontend
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Install bun
uses: oven-sh/setup-bun@v1
- name: Run checks
working-directory: frontend
run: |
bun install --ignore-scripts
bun run lint-check