mirror of
https://github.com/zmkfirmware/zmk.git
synced 2026-03-20 04:55:20 -05:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
37 lines
787 B
YAML
37 lines
787 B
YAML
name: Docs Checks
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- ".github/workflows/doc-checks.yml"
|
|
- "docs/**"
|
|
pull_request:
|
|
paths:
|
|
- ".github/workflows/doc-checks.yml"
|
|
- "docs/**"
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: bahmutov/npm-install@v1
|
|
with:
|
|
working-directory: docs
|
|
- name: ESLint
|
|
run: npm run lint
|
|
working-directory: docs
|
|
typecheck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: bahmutov/npm-install@v1
|
|
with:
|
|
working-directory: docs
|
|
- name: Build
|
|
run: npm run build
|
|
working-directory: docs
|
|
- name: TypeScript check
|
|
run: npm run typecheck
|
|
working-directory: docs
|