Skip to content

chore(deps): update dependency commitlint-config-traverson to v1.0.72 (master) #605

chore(deps): update dependency commitlint-config-traverson to v1.0.72 (master)

chore(deps): update dependency commitlint-config-traverson to v1.0.72 (master) #605

Workflow file for this run

name: Node.js CI
'on':
push:
branches:
- master
- renovate/**
- beta
pull_request:
types:
- opened
- synchronize
env:
FORCE_COLOR: 1
NPM_CONFIG_COLOR: always
jobs:
verify-matrix:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 14.0.0
- 14
- 16.0.0
- 16
- 18
- 19
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup node
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3.8.2
with:
cache: npm
node-version: ${{ matrix.node }}
- run: npm clean-install
- run: npx ls-engines
- run: npm ls >/dev/null
- run: npm test
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup node
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3.8.2
with:
node-version-file: .nvmrc
cache: npm
- run: npm clean-install
- run: npm test
release:
needs:
- verify
- verify-matrix
uses: traverson/.github/.github/workflows/release-package.yml@master
secrets:
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}