Skip to content

Let TypeDoc resolve Node adapter types #11

Let TypeDoc resolve Node adapter types

Let TypeDoc resolve Node adapter types #11

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
registry-url: 'https://registry.npmjs.org'
- name: Setup pnpm
uses: pnpm/action-setup@v6
with:
version: "10.18.0"
- name: Install dependencies
run: pnpm install
- name: Run tests
run: pnpm test
- name: Build package
run: pnpm build
- name: Publish to NPM
working-directory: packages/stax-xml
run: npm publish --access public
- name: Generate changelog
run: pnpm dlx changelogithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}