Skip to content

build(deps-dev): bump @commitlint/cli from 18.6.0 to 19.0.3 #860

build(deps-dev): bump @commitlint/cli from 18.6.0 to 19.0.3

build(deps-dev): bump @commitlint/cli from 18.6.0 to 19.0.3 #860

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['18.x']
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies and build (with cache)
uses: bahmutov/npm-install@v1
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Test
run: yarn test:ci
- name: Build
run: yarn build
- name: CodeCov
uses: codecov/[email protected]