Skip to content
This repository was archived by the owner on Jul 15, 2026. It is now read-only.

ci: add GitHub Actions build workflow — verify build on every PR #1

ci: add GitHub Actions build workflow — verify build on every PR

ci: add GitHub Actions build workflow — verify build on every PR #1

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm run build