Skip to content

feat: integrate auth (pt. 1) (#15) #40

feat: integrate auth (pt. 1) (#15)

feat: integrate auth (pt. 1) (#15) #40

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 --frozen-lockfile
- 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