This repository was archived by the owner on Apr 18, 2026. It is now read-only.
Version Packages (#405) #593
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: AGW Client Coverage | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'packages/agw-client/**' | |
| pull_request: | |
| paths: | |
| - 'packages/agw-client/**' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Set up foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| with: | |
| version: nightly-143abd6a768eeb52a5785240b763d72a56987b4a | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Run coverage | |
| run: pnpm --filter @abstract-foundation/agw-client coverage | |
| - name: Upload results to Codecov | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |