Skip to content

Establish the project operating foundation #46

Establish the project operating foundation

Establish the project operating foundation #46

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
jobs:
workspace:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
run_install: false
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: corepack enable
- run: corepack pnpm install --frozen-lockfile
- name: Build workspace
run: corepack pnpm build