Skip to content

test: add runnable known-gaps suite, excluded from default run #6

test: add runnable known-gaps suite, excluded from default run

test: add runnable known-gaps suite, excluded from default run #6

Workflow file for this run

# Opens/updates a "Version Packages" PR from pending changesets, and publishes
# to npm when that PR is merged. Publishing uses npm Trusted Publishing (OIDC) —
# no NPM_TOKEN secret. See RELEASING.md for the one-time npmjs.com setup.
name: Release
on:
push:
branches: [main]
concurrency:
group: release-${{ github.ref }}
cancel-in-progress: false
permissions:
contents: write
pull-requests: write
id-token: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v7
with:
node-version: 22
cache: pnpm
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Create release PR or publish to npm
uses: changesets/action@v1
with:
version: pnpm run version
publish: pnpm run release
commit: 'chore: version packages'
title: 'chore: version packages'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_CONFIG_PROVENANCE: 'true'