Skip to content

partially connected backend #329

partially connected backend

partially connected backend #329

Workflow file for this run

name: Frontend CI
on:
push:
branches:
- "**"
paths:
- "frontend/**"
jobs:
format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Format Frontend
run: |
cd frontend
npm install prettier
npx prettier --check .
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Lint Frontend
run: |
cd frontend
npm install
npm run lint
# This action is disabled since tests are failing right now
tests:
if: false
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Test Frontend
run: |
cd frontend
npm install
npm run test