Skip to content

Adjust ci config

Adjust ci config #2

Workflow file for this run

name: React CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
types: [opened, reopened, synchronize]
jobs:
build-and-test:
name: Build and Test React App
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 19
- name: Install Dependencies
run: npm install
- name: Lint Code
run: npm run lint
- name: Run Code Formatting
run: npm run format
- name: Run Tests
run: npm test
- name: Build React App
run: npm run build