Skip to content

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

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

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

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['18.x', '20.x']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
- name: Lint
run: npm run lint
- name: Build
run: npm run build