Skip to content

chore(deps-dev): bump markdownlint-cli from 0.48.0 to 0.49.0 #347

chore(deps-dev): bump markdownlint-cli from 0.48.0 to 0.49.0

chore(deps-dev): bump markdownlint-cli from 0.48.0 to 0.49.0 #347

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
lint-and-build:
name: Lint, Format & Build
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message || '', '[skip ci]') && !contains(github.event.pull_request.title || '', '[skip ci]') }}
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup environment
uses: ./.github/actions/setup
- name: Run ESLint
run: bun run lint
- name: Check Prettier formatting
run: bun run format:check
- name: Type check
run: bun run typecheck
- name: Build project
run: bun run build