mirror of
https://github.com/go-gitea/gitea
synced 2024-11-06 06:09:07 +01:00
23 lines
433 B
YAML
23 lines
433 B
YAML
|
name: compliance-docs
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
paths:
|
||
|
- "docs/**"
|
||
|
- "*.md"
|
||
|
|
||
|
concurrency:
|
||
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||
|
cancel-in-progress: true
|
||
|
|
||
|
jobs:
|
||
|
compliance-docs:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: 20
|
||
|
- run: make deps-frontend
|
||
|
- run: make lint-md
|