Skip to content

build(deps-dev): Bump @types/node from 22.8.6 to 22.9.0 #204

build(deps-dev): Bump @types/node from 22.8.6 to 22.9.0

build(deps-dev): Bump @types/node from 22.8.6 to 22.9.0 #204

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, ready_for_review, edited]
workflow_dispatch:
jobs:
markdownlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run markdownlint
run: |
sudo npm install -g markdownlint-cli
markdownlint $(find . -name '*.md' | grep -vF './.git')
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@v2
with:
path: content
only_warn: 1