Export findings from the backend instead of loaded page state #1575
Workflow file for this run
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: Check for Committed Artifacts | |
| on: | |
| pull_request: | |
| branches: [main, dev] | |
| paths: | |
| - "frontend/**" | |
| - "output/**" | |
| - "data/**" | |
| - "backend/data/**" | |
| - "logs/**" | |
| - "scripts/check-artifacts.sh" | |
| - ".github/workflows/check-artifacts.yml" | |
| jobs: | |
| artifact-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Run artifact guard | |
| run: bash scripts/check-artifacts.sh origin/main |