Skip to content

chore(deps-dev): bump @commitlint (#6) #60

chore(deps-dev): bump @commitlint (#6)

chore(deps-dev): bump @commitlint (#6) #60

Workflow file for this run

name: Checks
on:
# eslint-disable-next-line yml/no-empty-mapping-value
workflow_call:
push:
branches: [main]
pull_request:
types: [synchronize, opened, reopened, ready_for_review, converted_to_draft]
concurrency:
group: checks_${{ github.workflow }}_${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
# Use for testing esm modules support
node-version: 18.x
cache: npm
- name: Install Dependencies
run: npm ci --ignore-scripts
- name: Check Formatting
run: npm run format:check
- name: Lint
run: npm run lint
# - name: Lint styles
# run: npm run lint:styles