diff --git a/.github/workflows/gauntlet.yml b/.github/workflows/gauntlet.yml index c2b7207ff..9000deeb5 100644 --- a/.github/workflows/gauntlet.yml +++ b/.github/workflows/gauntlet.yml @@ -68,6 +68,10 @@ jobs: authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' - run: nix develop -c yarn --cwd ./gauntlet install --frozen-lockfile - run: nix develop -c yarn --cwd ./gauntlet eslint + - name: Print lint report artifact + if: failure() + shell: bash + run: cat ./gauntlet/eslint-report.json - name: Upload eslint report if: always() uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 diff --git a/integration-tests/go.mod b/integration-tests/go.mod index 49e42190d..4657015b2 100644 --- a/integration-tests/go.mod +++ b/integration-tests/go.mod @@ -5,7 +5,6 @@ go 1.21.7 replace github.com/smartcontractkit/chainlink-solana => ../ require ( - github.com/ethereum/go-ethereum v1.13.8 github.com/gagliardetto/binary v0.7.7 github.com/gagliardetto/solana-go v1.8.4 github.com/google/uuid v1.6.0 @@ -136,6 +135,7 @@ require ( github.com/emicklei/go-restful/v3 v3.10.2 // indirect github.com/esote/minmaxheap v1.0.0 // indirect github.com/ethereum/c-kzg-4844 v0.4.0 // indirect + github.com/ethereum/go-ethereum v1.13.8 // indirect github.com/evanphx/json-patch v5.6.0+incompatible // indirect github.com/evanphx/json-patch/v5 v5.6.0 // indirect github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect diff --git a/pkg/solana/cache_test.go b/pkg/solana/cache_test.go index 3d2529d8d..fb5605a40 100644 --- a/pkg/solana/cache_test.go +++ b/pkg/solana/cache_test.go @@ -158,15 +158,13 @@ func TestCache(t *testing.T) { // state query if bytes.Contains(body, []byte("11111111111111111111111111111111")) { // Drop error, client may cancel ctx. - _, err = w.Write(testStateResponse()) - require.NoError(t, err) + w.Write(testStateResponse()) //nolint:errcheck return } // transmissions query // Drop error, client may cancel ctx. - _, err = w.Write(testTransmissionsResponse(t, body, 0)) - require.NoError(t, err) + w.Write(testTransmissionsResponse(t, body, 0)) //nolint:errcheck })) lggr := logger.Test(t)