Skip to content

api pr workflow

api pr workflow #15

name: Appointment Booking CI
on:
workflow_dispatch:
pull_request:
paths:
- 'appointment-booking/**'
- '.github/workflows/appointment-booking-ci.yaml'
jobs:
quality-checks:
name: Quality Checks
runs-on: ubuntu-latest
defaults:
run:
working-directory: appointment-booking
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: appointment-booking/package-lock.json
- name: Install dependencies
run: npm ci
- name: Run quality gates
run: npm run ci:check