Skip to content

docs: update changelog and version for test ci/cd #11

docs: update changelog and version for test ci/cd

docs: update changelog and version for test ci/cd #11

Workflow file for this run

name: Publish
on:
push:
tags:
- 'v*'
jobs:
build:
name: Publish
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Run build
run: npm run build
- name: Publish package
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}