Skip to content

build(deps-dev): bump @commitlint/cli from 17.8.0 to 18.0.0 #489

build(deps-dev): bump @commitlint/cli from 17.8.0 to 18.0.0

build(deps-dev): bump @commitlint/cli from 17.8.0 to 18.0.0 #489

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Unit and Integration
strategy:
matrix:
version: [16, 18, 20]
os: [ubuntu-22.04, windows-2022, macos-13]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.version }}
- name: Install dependencies
run: npm ci
- name: Run unit tests
run: npm run test:unit:coverage
- name: Run integration tests
run: npm run test:integration