From 6e5a153440f5eda25ff2a28e0908c12b7c42ccdd Mon Sep 17 00:00:00 2001 From: Adrian Kant Date: Tue, 9 Jan 2024 20:24:09 -0500 Subject: [PATCH] remove covered workflows --- .../.github/workflows/forge-tests.yml | 39 ---------------- sdks/uniswapx-sdk/.github/workflows/main.yml | 35 --------------- .../.github/workflows/test-forge.yml | 35 --------------- .../.github/workflows/test-hardhat.yml | 44 ------------------- 4 files changed, 153 deletions(-) delete mode 100644 sdks/permit2-sdk/.github/workflows/forge-tests.yml delete mode 100644 sdks/uniswapx-sdk/.github/workflows/main.yml delete mode 100644 sdks/universal-router-sdk/.github/workflows/test-forge.yml delete mode 100644 sdks/universal-router-sdk/.github/workflows/test-hardhat.yml diff --git a/sdks/permit2-sdk/.github/workflows/forge-tests.yml b/sdks/permit2-sdk/.github/workflows/forge-tests.yml deleted file mode 100644 index 5a58f9082..000000000 --- a/sdks/permit2-sdk/.github/workflows/forge-tests.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: Forge Tests - -on: - push: - pull_request: - -jobs: - tests: - name: Unit tests - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - submodules: recursive - - - name: Set up node - uses: actions/setup-node@v2 - with: - node-version: 16 - registry-url: https://registry.npmjs.org - - - name: Install dependencies - run: yarn install --frozen-lockfile - - - name: Build - run: yarn build - - - name: Write interop - run: yarn interop - - - name: Install Foundry - uses: foundry-rs/foundry-toolchain@v1 - with: - version: nightly - - - name: Run tests - run: forge test diff --git a/sdks/uniswapx-sdk/.github/workflows/main.yml b/sdks/uniswapx-sdk/.github/workflows/main.yml deleted file mode 100644 index 0fce7bd32..000000000 --- a/sdks/uniswapx-sdk/.github/workflows/main.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: CI -on: [push] -jobs: - build: - name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }} - - runs-on: ${{ matrix.os }} - strategy: - matrix: - node: ['14.x'] - os: [ubuntu-latest] - - steps: - - name: Checkout repo - uses: actions/checkout@v2 - - - name: Use Node ${{ matrix.node }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node }} - - - name: Install - run: yarn install - - - name: Build - run: yarn build - - - name: Lint - run: yarn test:lint - - - name: Test - run: yarn test:unit --ci --coverage --maxWorkers=2 - - - name: Integration - run: yarn test:integration diff --git a/sdks/universal-router-sdk/.github/workflows/test-forge.yml b/sdks/universal-router-sdk/.github/workflows/test-forge.yml deleted file mode 100644 index 615348e66..000000000 --- a/sdks/universal-router-sdk/.github/workflows/test-forge.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Forge Tests - -on: - push: - branches: - - main - pull_request: - -jobs: - tests: - name: Unit tests - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup node - uses: actions/setup-node@v2 - with: - node-version: 16 - registry-url: https://registry.npmjs.org - - - name: Install dependencies - run: yarn install --frozen-lockfile - - - name: Install Foundry - uses: foundry-rs/foundry-toolchain@v1 - with: - version: nightly - - - name: Run tests - run: yarn test:forge - env: - FORK_URL: '${{ secrets.FORK_URL }}' diff --git a/sdks/universal-router-sdk/.github/workflows/test-hardhat.yml b/sdks/universal-router-sdk/.github/workflows/test-hardhat.yml deleted file mode 100644 index 2aa6d65bb..000000000 --- a/sdks/universal-router-sdk/.github/workflows/test-hardhat.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Hardhat Tests - -on: - push: - branches: - - main - pull_request: - -jobs: - tests: - name: Hardhat tests - - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Setup node - uses: actions/setup-node@v2 - with: - node-version: 16 - registry-url: https://registry.npmjs.org - - - name: Install dependencies - run: yarn install --frozen-lockfile - - - - name: Install Foundry - uses: foundry-rs/foundry-toolchain@v1 - with: - version: nightly - - - name: build - run: yarn build - - # needed to generate abi - - name: Build solidity - run: forge build - - - name: Run tests - run: yarn test:hardhat - env: - FORK_URL: '${{ secrets.FORK_URL }}'