fix: doc #6
Workflow file for this run
This file contains 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: CI Docs Shim | |
# Trigger this workflow on pull requests that affect documentation or certain config files. | |
on: | |
pull_request: | |
paths: | |
- "**.md" | |
- "**.jpg" | |
- "**.png" | |
- "**.gif" | |
- "**.svg" | |
- docs/** | |
- .vscode/** | |
- .gitignore | |
- renovate.json | |
- .release-please-config.json | |
- release-please-config.json | |
- CODEOWNERS | |
- LICENSE | |
# shims to pass ci requirements for doc changes | |
jobs: | |
lint-check: | |
name: Lint Check | |
uses: ./.github/workflows/lint.yaml | |
check-paths: | |
name: Check Paths(Simulated) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Paths | |
run: echo "Simulating check-paths job - Success!" | |
run-package-test: | |
name: Package Test(Simulated) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Run Package Test | |
run: echo "Simulating run-package-test job - Success!" | |
evaluate-package-compliance: | |
name: Compliance Test(Simulated) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Evaluate Package Compliance | |
run: echo "Simulating evaluate-package-compliance job - Success!" | |
# slim-dev-test.yaml | |
test: | |
name: Slim Dev Test(Simulated) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Shim for Slim Dev Test | |
run: | | |
echo "Documentation-only change detected; marking test successful." |