Verify #4
This file contains 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: Verify | |
on: | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
uses: ./.github/actions/install-dependencies | |
- name: Lint repo | |
run: pnpm lint:repo | |
- name: Lint code | |
run: pnpm format && pnpm lint:fix | |
- name: Update package versions | |
run: pnpm version:update | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
commit_message: 'chore: format' | |
commit_user_name: 'github-actions[bot]' | |
commit_user_email: 'github-actions[bot]@users.noreply.github.com' | |
build: | |
name: Build | |
needs: lint | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
uses: ./.github/actions/install-dependencies | |
- name: Build | |
run: pnpm build | |
- name: Publint | |
run: pnpm test:build | |
- name: Check for unused files, dependencies, and exports | |
run: pnpm knip --production --ignore-internal | |
types: | |
name: Types | |
needs: lint | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
strategy: | |
matrix: | |
typescript-version: ['5.0.4', '5.1.6', '5.2.2', 'latest'] | |
viem-version: ['2.0.0', 'latest'] | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
uses: ./.github/actions/install-dependencies | |
- run: pnpm add -D -w typescript@${{ matrix.typescript-version }} viem@${{ matrix.viem-version }} | |
- name: Link packages | |
run: pnpm preconstruct | |
- name: Check types | |
run: pnpm typecheck | |
# Redundant with `pnpm typecheck` | |
# If Vitest adds special features in the future, e.g. type coverage, can add this back! | |
# - name: Test types | |
# run: pnpm test:typecheck | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
strategy: | |
max-parallel: 3 | |
matrix: | |
shard: [1, 2, 3] | |
total-shards: [3] | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
uses: ./.github/actions/install-dependencies | |
- name: Run tests | |
uses: nick-fields/retry@v3 | |
with: | |
command: CI=true pnpm test:cov --shard=${{ matrix.shard }}/${{ matrix.total-shards }} --retry=3 --bail=1 | |
max_attempts: 3 | |
timeout_minutes: 5 | |
env: | |
VITE_MAINNET_FORK_BLOCK_NUMBER: ${{ vars.VITE_MAINNET_FORK_BLOCK_NUMBER }} | |
VITE_MAINNET_FORK_URL: ${{ secrets.VITE_MAINNET_FORK_URL }} | |
VITE_OPTIMISM_FORK_BLOCK_NUMBER: ${{ vars.VITE_OPTIMISM_FORK_BLOCK_NUMBER }} | |
VITE_OPTIMISM_FORK_URL: ${{ secrets.VITE_OPTIMISM_FORK_URL }} | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 |