feat(local E2E development simulation): add pr-e2e-test.yml for githu… #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Docs CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| mdvalidate: | |
| name: Validate Markdown Files | |
| runs-on: ubuntu-latest | |
| env: | |
| GOARCH: amd64 | |
| GOOS: linux | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Markdown Link Validation | |
| uses: gaurav-nelson/github-action-markdown-link-check@v1 |