From 477bb605116ab1fc932f437d1a19945aadbe686c Mon Sep 17 00:00:00 2001 From: damilola edwards Date: Thu, 9 Feb 2023 09:48:24 +0100 Subject: [PATCH 1/2] removed etherlime from CI --- .github/workflows/ci.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4c92657c..01f92d61 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest", "windows-2022"] - type: ["brownie", "buidler", "dapp", "embark", "etherlime", "hardhat", "solc", "truffle", "waffle", "foundry", "standard"] + type: ["brownie", "buidler", "dapp", "embark", "hardhat", "solc", "truffle", "waffle", "foundry", "standard"] exclude: # Currently broken, tries to pull git:// which is blocked by GH - type: embark @@ -35,15 +35,6 @@ jobs: run: | echo 'C:\msys64\mingw64\bin' >> "$GITHUB_PATH" echo 'C:\msys64\usr\bin' >> "$GITHUB_PATH" - - name: Choose Node version - id: node - shell: bash - run: | - if [ "${{ matrix.type }}" = "etherlime" ]; then - echo 'version=10.17.0' >> "$GITHUB_OUTPUT" - else - echo 'version=lts/*' >> "$GITHUB_OUTPUT" - fi - name: Set up Node uses: actions/setup-node@v3 with: From 5554ac29b8345f223cedd2f406afee5e01737186 Mon Sep 17 00:00:00 2001 From: damilola edwards Date: Mon, 13 Feb 2023 11:50:17 +0100 Subject: [PATCH 2/2] fixed reference point --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 01f92d61..17343fcf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: - name: Set up Node uses: actions/setup-node@v3 with: - node-version: ${{ steps.node.outputs.version }} + node-version: 'lts/*' - name: Set up Python 3.8 uses: actions/setup-python@v4 with: