Skip to content

chore(deps): bump react and @types/react in /client #613

chore(deps): bump react and @types/react in /client

chore(deps): bump react and @types/react in /client #613

Workflow file for this run

name: Client CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Install Node.js and npm
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install Client Dependencies
run: |
cd client
npm ci
- name: Lint Client Code
run: |
cd client
npm run lint
- name: Check Code Formatting in Client
run: |
cd client
npm run format:check