Skip to content

Bump tmp, @changesets/cli and patch-package #204

Bump tmp, @changesets/cli and patch-package

Bump tmp, @changesets/cli and patch-package #204

Workflow file for this run

name: Main
on:
pull_request:
push:
branches:
- main
- develop
paths:
- "packages/**"
- "docs/**"
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read # to fetch code (actions/checkout)
env:
FORCE_COLOR: 3
jobs:
ci:
name: CI
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node: [18, 24]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: lint
run: npm run lint
- name: lint dependency versions
# ignore internal launchpad dependency mismatches. These versions
# are handled by changesets.
run: npx sherif -i @bluecadet/launchpad*
- name: Validate types
run: npm run build
- name: Run tests
run: npm run test