Skip to content

Build Authenticated User Dashboard with Responsive Layout #127

Build Authenticated User Dashboard with Responsive Layout

Build Authenticated User Dashboard with Responsive Layout #127

Workflow file for this run

name: Frontend CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci --legacy-peer-deps
- name: Lint
run: npm run lint
- name: Type Check
run: npx tsc --noEmit
- name: Build
run: npm run build
env:
NEXT_PUBLIC_WEBHOOK_URL: "http://localhost:2000"
NEXT_PUBLIC_API_URL: "http://localhost:3001"