Skip to content

Onboarding Flow

Onboarding Flow #78

Workflow file for this run

name: Kaapi CI
on:
push:
branches: [main]
pull_request:
branches: ["**"]
jobs:
lint-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Check Formatting with Prettier
run: npm run format:check
- name: Run Linting
run: npm run lint
- name: Build the Project
run: npm run build