Skip to content

refactor(app): consolidate shared state and utilities #18

refactor(app): consolidate shared state and utilities

refactor(app): consolidate shared state and utilities #18

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
- name: Enable Corepack
run: corepack enable
- name: Verify pnpm
run: pnpm --version
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run checks
run: pnpm check
- name: Build app
run: pnpm build