Skip to content

feat: wire frontend to real backend API #125

feat: wire frontend to real backend API

feat: wire frontend to real backend API #125

Workflow file for this run

name: Backend CI
on:
push:
branches: [ "main", "master" ]
paths:
- 'apps/backend/**'
pull_request:
branches: [ "main", "master" ]
paths:
- 'apps/backend/**'
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./apps/backend
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: apps/backend/package-lock.json
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run test