Skip to content

chore: version packages #1

chore: version packages

chore: version packages #1

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- run: npx tsc -b
- run: npm run build
changesets:
name: Changeset present
runs-on: ubuntu-latest
# the release PR consumes changesets, so it is exempt
if: github.head_ref != 'changeset-release/main'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- name: Require a changeset (use `npx changeset --empty` to opt out)
run: npx changeset status --since=origin/main