Skip to content

Modernize Node.js and TypeScript configuration (#158) #46

Modernize Node.js and TypeScript configuration (#158)

Modernize Node.js and TypeScript configuration (#158) #46

Workflow file for this run

name: Publish to NPM
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install, build, and verify
env:
CI: true
run: |
npm install
npm run ci
- name: Release
env:
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
run: npx semantic-release