Skip to content

chore(deps-dev): bump @commitlint/config-conventional from 19.5.0 to 19.6.0 #521

chore(deps-dev): bump @commitlint/config-conventional from 19.5.0 to 19.6.0

chore(deps-dev): bump @commitlint/config-conventional from 19.5.0 to 19.6.0 #521

Workflow file for this run

name: Run tests and build scripts on pull request
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout sources 🔰
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Cache Node.js modules 💾
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies ⏬
run: npm ci
- name: Run typecheck, lint and tests 🧪
run: npm run check
- name: Build artifacts 🏗️
run: npm run build:docs && npm run build:examples && npm run build:dist