Skip to content

build(deps-dev): bump @commitlint/cli from 18.4.4 to 18.5.0 (#252) #864

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

build(deps-dev): bump @commitlint/cli from 18.4.4 to 18.5.0 (#252) #864

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci --prefer-offline
- name: Run ESLint
run: npm run lint
- name: Type check
run: npm run lint:tsc
- name: Run unit tests
run: npm run test:ci
- name: Codecov
uses: codecov/codecov-action@v3
- name: Run module tests
run: npm run test:esm
- name: Build package
run: npm run build