Skip to content

initial

initial #1

Workflow file for this run

name: Build Scripts
on:
workflow_dispatch:
push:
branches: [main]
paths:
- 'packages/scripts/**'
- '.github/workflows/build-scripts.yml'
jobs:
build-scripts:
name: Build Scripts Package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10.20.0
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build scripts package
run: pnpm --filter scripts build
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: scripts-dist
path: packages/scripts/dist/**
retention-days: 30