Skip to content

Build and Release (next) #10

Build and Release (next)

Build and Release (next) #10

Workflow file for this run

name: Build and Release (next)
on:
create:
tags:
- v*-[0-9] # v0.0.3-1, v0.0.3-2, etc.
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '20'
- run: npm ci
- run: npm run build
- run: npm run test
- uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}