Skip to content

Bump version to 0.8.0 #5

Bump version to 0.8.0

Bump version to 0.8.0 #5

Workflow file for this run

name: Release
on:
release:
types: [created]
# Optionally also run on tags
push:
tags:
- 'v*.*.*'
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22.x'
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Validate and build
run: npm run validate
- name: Run tests
run: npm run test:all
- name: Publish to npm
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}