Skip to content

update github workflow and fix build app issue #52

update github workflow and fix build app issue

update github workflow and fix build app issue #52

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: npx eslint . --ext .js,.jsx
- name: Build
run: npm run build