Skip to content

chore(deps): Bump the all-github-actions group with 19 updates #2323

chore(deps): Bump the all-github-actions group with 19 updates

chore(deps): Bump the all-github-actions group with 19 updates #2323

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
paths-ignore:
- '.github/workflows/release.yml'
permissions:
contents: read
jobs:
eslint:
name: ESLint
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
markdownlint:
name: Markdown Lint
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run markdownlint
run: npm run lint:md