Skip to content

chore(deps): update dependency @commitlint/config-conventional to v18.6.2 #1577

chore(deps): update dependency @commitlint/config-conventional to v18.6.2

chore(deps): update dependency @commitlint/config-conventional to v18.6.2 #1577

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
on:
push:
branches: [main]
pull_request:
branches: [main]
name: Tests
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1 # v4
- uses: pnpm/action-setup@v3.0.0
with:
version: 8
- uses: actions/setup-node@v4.0.2
with:
node-version: 18.x
cache: 'pnpm'
- run: pnpm install --frozen-lockfile --strict-peer-dependencies
- run: pnpm lint
ci:
name: Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4.1.1 # v4
- uses: pnpm/action-setup@v3.0.0
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4.0.2
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm install --frozen-lockfile --strict-peer-dependencies
- run: pnpm test
- run: pnpm build