From 0fcf16ab4771e75ae155bb9e0d5bfa06eb1317d4 Mon Sep 17 00:00:00 2001 From: "moxey.eth" Date: Wed, 8 May 2024 12:32:45 +1000 Subject: [PATCH] ci: update wagmi action --- .github/actions/setup-wagmi/action.yml | 13 +++++++++---- .github/workflows/verify.yml | 3 +-- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/actions/setup-wagmi/action.yml b/.github/actions/setup-wagmi/action.yml index 1ddb8e4031..747b511748 100644 --- a/.github/actions/setup-wagmi/action.yml +++ b/.github/actions/setup-wagmi/action.yml @@ -18,7 +18,7 @@ runs: with: cache: pnpm cache-dependency-path: ./wagmi/pnpm-lock.yaml - node-version: 20 + node-version: 21 - name: Build viem shell: bash @@ -26,12 +26,17 @@ runs: - name: Install dependencies shell: bash - run: pnpm install --ignore-scripts + run: pnpm install working-directory: ./wagmi - shell: bash - run: pnpm link --dir ../wagmi - working-directory: ./src + run: pnpm i viem@file:../src -w + working-directory: ./wagmi + + - name: Build packages + shell: bash + run: pnpm build + working-directory: ./wagmi - name: Link packages shell: bash diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 0ea245b6d5..2bbcbeaa41 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -211,8 +211,7 @@ jobs: timeout-minutes: 5 strategy: matrix: - # TODO: Add 'latest' once https://github.com/wevm/viem/issues/1916 resolved - typescript-version: ['5.0.4', '5.1.6', '5.2.2', '5.3.2'] + typescript-version: ['5.4.2', 'latest'] steps: - name: Clone repository