Skip to content

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

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

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

Workflow file for this run

name: CI for non-main branches
on:
push:
branches-ignore:
- 'main'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test:ci
- name: Build
run: pnpm build
- name: CodeCov
uses: codecov/codecov-action@v3.1.4