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

Add build step to CI #1

Add build step to CI

Add build step to CI #1

Workflow file for this run

name: Build
on:
pull_request:
branches:
- "**"
push:
branches:
- "**"
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
with:
fetch-depth: 0
- name: Setup Node 20.x
uses: actions/setup-node@v3
with:
node-version: 20.19
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.4.0
- name: Install dependencies
run: pnpm install --frozen-lockfile --strict-peer-dependencies
- name: Build workspace
run: pnpm run build