Skip to content

chore(deps): update commitlint monorepo to v19 #2346

chore(deps): update commitlint monorepo to v19

chore(deps): update commitlint monorepo to v19 #2346

Workflow file for this run

name: Run checks
on:
- push
jobs:
lint:
name: Run ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: 'yarn'
- run: yarn install --pure-lockfile
- run: yarn lint:strict
# tsc:
# name: Run Type Check
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v4
# with:
# cache: 'yarn'
# - run: yarn install --pure-lockfile
# - run: yarn typecheck
prettier:
name: Run Prettier Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: 'yarn'
- run: yarn install --pure-lockfile
- run: yarn format:check
# test:
# name: Run Test
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v4
# with:
# cache: 'yarn'
# - run: yarn install --pure-lockfile
# - run: yarn test