Skip to content

ci(root): Add ci github actions workflow #1

ci(root): Add ci github actions workflow

ci(root): Add ci github actions workflow #1

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
node-version: 24
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm -r --if-present run build
- run: pnpm lint
- run: pnpm fmt:check