Skip to content

chore(deps-dev): bump @commitlint/cli from 19.4.1 to 19.5.0 #349

chore(deps-dev): bump @commitlint/cli from 19.4.1 to 19.5.0

chore(deps-dev): bump @commitlint/cli from 19.4.1 to 19.5.0 #349

Workflow file for this run

name: build
on:
workflow_dispatch:
push:
branches: [ main ]
tags: [ v* ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install
run: npm ci
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: https://registry.npmjs.org/
scope: netatwork
- name: build
run: npm run build
- name: test
run: npm test
# Note that this does not takes care of the versioning.
# Changelog generation, version tagging needs to be done, prior to this.
- name: publish to npm
run: npm publish --access public --@netatwork:registry=https://registry.npmjs.org/
if: startsWith(github.ref, 'refs/tags/v')
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}