Skip to content

chore: update version in package-lock.json #1

chore: update version in package-lock.json

chore: update version in package-lock.json #1

Workflow file for this run

name: publish
on:
workflow_dispatch:
push:
tags:
- 'v?[0-9]+.[0-9]+.[0-9]+*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
- name: Lint & Tests
run: |
npm install
npm run lint
npm run test:ci
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: "./test-report-lcov.info"
- name: Publish
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}