Skip to content

feat: add experimental outputFormat: 'tokens' support (#146) #67

feat: add experimental outputFormat: 'tokens' support (#146)

feat: add experimental outputFormat: 'tokens' support (#146) #67

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
permissions:
contents: write
pull-requests: write
id-token: write # for npm provenance OIDC attestation
jobs:
version:
runs-on: ubuntu-latest
steps:
- name: Checkout code repository
uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Install pnpm
uses: pnpm/action-setup@v6
- name: Setup node.js
uses: actions/setup-node@v6
with:
# npm trusted publishing requires npm >= 11.5.1 and Node >= 22.14.0.
# Node 24 ships with npm 11+.
node-version: 24.18.0
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
commit: "chore: update versions"
title: "chore: update versions"
publish: pnpm ci:publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_CONFIG_PROVENANCE: true