Skip to content

build(deps-dev): bump @commitlint/cli from 18.6.0 to 19.3.0 #1552

build(deps-dev): bump @commitlint/cli from 18.6.0 to 19.3.0

build(deps-dev): bump @commitlint/cli from 18.6.0 to 19.3.0 #1552

Workflow file for this run

name: Node.js Package Lint And Test
on:
push:
branches:
- "*"
- "!master"
pull_request:
branches:
- "*"
jobs:
lint-and-test:
name: Test on node ${{ matrix.node-version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18]
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm run build --if-present
- run: npm test