Skip to content

All logic with VolunteerApplicationForm and MyApplications list for volunteer and PendingApplicationsList, ApprovedVolunteersList and VolunteerApplicationCard for organization #295

All logic with VolunteerApplicationForm and MyApplications list for volunteer and PendingApplicationsList, ApprovedVolunteersList and VolunteerApplicationCard for organization

All logic with VolunteerApplicationForm and MyApplications list for volunteer and PendingApplicationsList, ApprovedVolunteersList and VolunteerApplicationCard for organization #295

Workflow file for this run

name: Check Code Formatting
on:
push:
branches: [main, dev]
pull_request:
types: [opened, reopened, synchronize]
branches: "**"
jobs:
# (React)
frontend:
name: Check React Code Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install frontend dependencies
working-directory: front-end
run: npm install
- name: Check formatting with Prettier
working-directory: front-end
run: npm run prettier
- name: Run ESLint
working-directory: front-end
run: npm run lint