[codex] Disable FLM deposits in conditional mode #15
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: auto-qa | |
| on: | |
| pull_request: | |
| paths: | |
| - '.github/workflows/auto-qa.yml' | |
| - '.github/workflows/auto-qa-live.yml' | |
| - 'auto-qa/**' | |
| - 'package.json' | |
| - 'src/utils/proposalLifecycle.js' | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - '.github/workflows/auto-qa.yml' | |
| - '.github/workflows/auto-qa-live.yml' | |
| - 'auto-qa/**' | |
| - 'package.json' | |
| - 'src/utils/proposalLifecycle.js' | |
| workflow_dispatch: | |
| jobs: | |
| unit: | |
| name: Deterministic auto-qa | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Run deterministic auto-qa tests | |
| run: npm run auto-qa:test:unit |