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

Add build step to CI #4

Add build step to CI

Add build step to CI #4

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: Install PNPM
run: npm install -g pnpm@9.4.0
shell: bash
- name: Install dependencies
run: pnpm install --frozen-lockfile --strict-peer-dependencies
shell: bash
- name: Build workspace
run: pnpm run build
shell: bash