fix(FHE): guard getDecryptResult and getDecryptResultSafe against uninitialized (zero) handles
#67
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: Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| test-host-chain: | |
| name: Host Chain Contract Tests | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: contracts/internal/host-chain | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v2 | |
| with: | |
| version: 9 | |
| - name: Get pnpm store directory | |
| shell: bash | |
| run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
| - name: Setup pnpm cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ env.STORE_PATH }} | |
| key: ${{ runner.os }}-pnpm-store-${{ hashFiles('contracts/internal/host-chain/pnpm-lock.yaml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-pnpm-store- | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Compile contracts | |
| run: pnpm compile | |
| env: | |
| # Dummy keys for hardhat config (not used - tests run on Hardhat network) | |
| KEY: "0x0000000000000000000000000000000000000000000000000000000000000001" | |
| KEY2: "0x0000000000000000000000000000000000000000000000000000000000000002" | |
| AGGREGATOR_KEY: "0x0000000000000000000000000000000000000000000000000000000000000003" | |
| - name: Run tests | |
| run: pnpm test | |
| env: | |
| KEY: "0x0000000000000000000000000000000000000000000000000000000000000001" | |
| KEY2: "0x0000000000000000000000000000000000000000000000000000000000000002" | |
| AGGREGATOR_KEY: "0x0000000000000000000000000000000000000000000000000000000000000003" |