test(db): cast scheduled paydown source fixture #112
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
| # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
| name: ci | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| env: | |
| NODE_OPTIONS: "--conditions=development" | |
| PATH: "/usr/bin:/bin:/usr/local/bin" | |
| CHERRY_TMP_ROOT: "/tmp/cherry-tmp" | |
| CHERRY_VINE_SIGNATURE_MODE: "enforce" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - name: Install toolchain | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y ripgrep | |
| - name: Prepare temp root | |
| run: | | |
| mkdir -p "$CHERRY_TMP_ROOT" | |
| chmod 700 "$CHERRY_TMP_ROOT" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Guardrails | |
| run: npm run check:guardrails | |
| - name: Node runtime tests | |
| run: npm run check:tests:node | |
| - name: Next runtime tests | |
| run: npm run check:tests:next | |
| - name: Verify CI truth | |
| run: npm run ci:verify |