Adds Anvil-based deposit E2E tests #3688
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: CI | |
| on: | |
| push: | |
| branches: ['main'] | |
| pull_request: | |
| types: [opened, synchronize] | |
| workflow_call: | |
| env: | |
| INFURA_API_KEY: '' | |
| jobs: | |
| build: | |
| name: Build and Test | |
| timeout-minutes: 15 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| with: | |
| # https://github.com/changesets/changesets/issues/1055 | |
| fetch-depth: 0 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9.12.3 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.17.0 | |
| cache: 'pnpm' | |
| - name: Changeset | |
| # https://github.com/changesets/changesets/issues/1048 | |
| run: pnpm dlx @changesets/cli status --since origin/main | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Initialize submodules | |
| run: git submodule update --init | |
| - name: Build | |
| run: pnpm build | |
| - name: Typecheck | |
| run: pnpm typecheck | |
| - name: Lint | |
| run: pnpm lint && pnpm format --check | |
| - name: Test | |
| run: pnpm test |