chore: update changeset #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- master | |
- next | |
defaults: | |
run: | |
shell: bash | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
ACTIONS_RUNNER_DEBUG: true | |
NEXT_TELEMETRY_DISABLED: '1' | |
ASTRO_TELEMETRY_DISABLED: '1' | |
NODE_OPTIONS: '--no-warnings' | |
FORCE_COLOR: 1 | |
jobs: | |
release: | |
name: 'Release' | |
if: github.repository == 'rehype-pretty/rehype-pretty-code' && !contains(github.event.head_commit.message, '[skip ci]') | |
runs-on: ['ubuntu-latest'] | |
permissions: | |
issues: write | |
checks: write | |
actions: write | |
contents: write | |
id-token: write | |
packages: write | |
pull-requests: write | |
repository-projects: write | |
steps: | |
- name: 'Checkout Repository' | |
uses: actions/checkout@v4 | |
- name: 'Get pnpm Version' | |
id: pnpm-version | |
run: | | |
PNPM_VERSION=$(cat package.json | jq --raw-output '.packageManager' | awk -F'@' '{print $2}') | |
echo "PNPM_VERSION=$PNPM_VERSION" >> $GITHUB_OUTPUT | |
- name: 'Setup pnpm' | |
uses: pnpm/action-setup@v3 | |
with: | |
version: ${{ steps.pnpm-version.outputs.PNPM_VERSION }} | |
- name: 'Setup Node.js' | |
uses: actions/setup-node@v4 | |
with: | |
cache: 'pnpm' | |
node-version: 'lts/*' | |
registry-url: 'https://registry.npmjs.org' | |
- name: 'Install Dependencies' | |
run: pnpm install --frozen-lockfile | |
- name: Check for unreleased changesets | |
id: has-changesets | |
uses: andstor/file-existence-action@v3 | |
with: | |
files: ".changeset/!(README).md" | |
- name: 'Build Packages' | |
if: steps.has-changesets.outputs.files_exists == 'true' | |
run: | | |
pnpm lint && pnpm format | |
pnpm typecheck | |
pnpm test | |
pnpm build | |
- name: Create Release Pull Request or Publish | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
# Note: pnpm install after versioning is necessary to refresh lockfile | |
version: pnpm dlx bun@latest ./scripts/changeset-update-version.ts | |
publish: pnpm changeset:publish | |
commit: "[ci] release" | |
title: "[ci] release" | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NPM_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |