chore(deps): bump react and @types/react in /client #613
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |