feat: remove Paraswap V5, Term Finance V1 and Uniswap V2 Exchange #1563
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: | |
| pull_request: | |
| branches: [main] | |
| types: [opened, reopened, synchronize, ready_for_review] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| jobs: | |
| verify: | |
| name: Verify | |
| uses: ./.github/workflows/reusable-verify.yaml | |
| secrets: inherit | |
| verify_environment_assets: | |
| name: Verify Environment Assets | |
| uses: ./.github/workflows/reusable-verify-environment-assets.yaml | |
| secrets: inherit | |
| docs: | |
| name: Documentation | |
| uses: ./.github/workflows/reusable-docs.yaml | |
| secrets: inherit | |
| permissions: | |
| pages: write | |
| id-token: write | |
| snapshot: | |
| name: Snapshot | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| uses: ./.github/actions/install-dependencies | |
| - name: Run build | |
| run: pnpm build | |
| - name: Create snapshot | |
| run: pnpx [email protected] publish --compact --comment=update --pnpm ./packages/* |