Skip to content

feat: add Docker setup for frontend and compose configuration #124

feat: add Docker setup for frontend and compose configuration

feat: add Docker setup for frontend and compose configuration #124

Workflow file for this run

name: Lint Frontend
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
lint-frontend:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install
working-directory: frontend
- name: Run lint
run: pnpm exec biome check ./src
working-directory: frontend