Skip to content

fix: deploy API and CI for sandbox + live #4

fix: deploy API and CI for sandbox + live

fix: deploy API and CI for sandbox + live #4

Workflow file for this run

name: "Frontend: Lint and Build"
on:
push:
branches: [develop]
pull_request:
branches: [develop]
jobs:
frontend:
name: Lint and Build
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "18"
cache: "npm"
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
run: npm ci --legacy-peer-deps
- name: Lint
run: npm run lint
- name: Build
run: npm run build