Skip to content

Set up backend routes for GET/POST Intake Statistical form and added necessary questions #292

Set up backend routes for GET/POST Intake Statistical form and added necessary questions

Set up backend routes for GET/POST Intake Statistical form and added necessary questions #292

Workflow file for this run

name: Run Checks
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
run-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: "18"
cache: "yarn"
- name: Install dependencies
run:
npm exec --workspaces -- npx rimraf node_modules && npx rimraf
node_modules && yarn install
- name: Build React project
run: cd client && yarn run build
- name: Run linter
run: cd client && yarn run lint && cd ../ && cd server && yarn run lint