2023-05-12 01:21:28 +00:00
|
|
|
name: compliance-docs
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
2023-05-25 01:33:31 +00:00
|
|
|
files-changed:
|
|
|
|
uses: ./.github/workflows/files-changed.yml
|
|
|
|
|
2023-05-12 01:21:28 +00:00
|
|
|
compliance-docs:
|
2023-05-25 01:33:31 +00:00
|
|
|
if: needs.files-changed.outputs.docs == 'true'
|
|
|
|
needs: files-changed
|
2023-05-12 01:21:28 +00:00
|
|
|
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
|
2023-05-25 16:19:13 +00:00
|
|
|
- run: make docs # test if build could succeed
|