Skip to content

fix frontend faliure workflow #57

fix frontend faliure workflow

fix frontend faliure workflow #57

name: React CI
on:
push:
branches: [ main ]
paths:
- 'frontend/**'
pull_request:
branches: [ main ]
paths:
- 'frontend/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
path: 'frontend'
ref: main
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '20.x'
- name: Install Dependencies
run: npm install --prefix frontend
- name: Run ESLint
run: npm run format
- name: Build
run: npm run build --prefix frontend