Skip to content

Allow all logs to be printed before exit #9

Allow all logs to be printed before exit

Allow all logs to be printed before exit #9

Workflow file for this run

name: Publish to NPM
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Upgrade npm CLI
run: npm install -g npm@latest
- name: Install dependencies
run: npm ci
- name: Publish package
run: npm publish