Skip to content

create image file upload functionality for user image update as well as user data update functionality in the back end #89

create image file upload functionality for user image update as well as user data update functionality in the back end

create image file upload functionality for user image update as well as user data update functionality in the back end #89

Workflow file for this run

name: Prettier
on:
push:
branches:
- main
pull_request:
branches:
- main
- staging
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install frontend dependencies
run: |
cd frontend
npm install
- name: Install backend dependencies
run: |
cd backend
npm install
- name: Check frontend code
run: |
cd frontend
npx prettier --check .
- name: Check backend code
run: |
cd backend
npx prettier --check .