Skip to content

feat: add docker deployment and reorganize docs #1

feat: add docker deployment and reorganize docs

feat: add docker deployment and reorganize docs #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
frontend:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run checks
run: pnpm check
- name: Build app
run: pnpm build