fix(demo): preserve RFQ history and target claim expiry #127
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| env: | |
| FOUNDRY_PROFILE: default | |
| jobs: | |
| test: | |
| name: forge fmt / build / test | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Dependencies live vendored under lib/ (committed, not git submodules), | |
| # so no submodule checkout or `forge install` is needed. | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: false | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| with: | |
| version: stable | |
| - name: Install Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| cache-dependency-path: | | |
| services/rfq/package-lock.json | |
| services/cli/package-lock.json | |
| services/rfq-demo-backend/package-lock.json | |
| services/toolkit/package-lock.json | |
| services/operator-api/package-lock.json | |
| - name: Run repository-wide checks | |
| run: scripts/check.sh |