Skip to content

Issue 65 replace all font styling with global font classes #475

Issue 65 replace all font styling with global font classes

Issue 65 replace all font styling with global font classes #475

Workflow file for this run

name: Frontend code checks
on:
push:
branches: [main]
pull_request:
types: ["opened", "synchronize", "reopened", "edited"]
workflow_dispatch:
jobs:
format:
name: Run Prettier
runs-on: ubuntu-latest
defaults:
run:
working-directory: client
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
cache: "npm"
cache-dependency-path: client/package-lock.json
- name: Install dependencies
run: npm i
- name: Run Prettier
run: npm run format:check
lint:
name: Run ESLint
runs-on: ubuntu-latest
defaults:
run:
working-directory: client
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
cache: "npm"
cache-dependency-path: client/package-lock.json
- name: Install dependencies
run: npm i
- name: Run Eslint
run: npm run lint:strict && npm run lint
typecheck:
name: Check types
runs-on: ubuntu-latest
defaults:
run:
working-directory: client
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
cache: "npm"
cache-dependency-path: client/package-lock.json
- name: Install dependencies
run: npm i
- name: Run tsc
run: npm run typecheck