feat(performance): Phases 1-3 complete - 90% latency reduction #40
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: Verify manifest was updated | |
| on: pull_request | |
| jobs: | |
| validate-manifest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Validate manifest was changed | |
| run: | | |
| set +e | |
| git --no-pager diff origin/main --name-only --exit-code manifest.json | |
| if [ $? -eq 0 ]; then | |
| echo "Manifest file not updated" | |
| exit 1 | |
| fi |