name: Test and Lint on: push: branches: [ main, develop ] pull_request: branches: [ main ] jobs: backend-test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Setup Node.js uses: actions/setup-node@v3 with: node-version: '18' - name: Install backend dependencies working-directory: ./backend run: npm ci - name: Run backend linting working-directory: ./backend run: npm run lint || true # Continue on lint errors for now - name: Run backend tests working-directory: ./backend run: npm test || true # Continue on test failures for now frontend-test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Setup Node.js uses: actions/setup-node@v3 with: node-version: '18' - name: Install frontend dependencies working-directory: ./frontend run: npm ci --legacy-peer-deps - name: Run frontend linting working-directory: ./frontend run: npm run lint || true # Continue on lint errors for now - name: Build frontend working-directory: ./frontend run: npm run build