Skip to content

chore: update prettier config, run format #36

chore: update prettier config, run format

chore: update prettier config, run format #36

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 20
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build React project
run: npm run build
- name: Run linter
run: npm run lint