From 92436d34b6ec6042be48cfd4928a76bb3890c445 Mon Sep 17 00:00:00 2001 From: Gancho Radkov Date: Fri, 9 Aug 2024 11:42:49 +0300 Subject: [PATCH 1/4] fix: replaces no longer valid projectId for ci runs --- jsonrpc/provider/test/index.test.ts | 2 +- jsonrpc/ws-connection/test/index.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jsonrpc/provider/test/index.test.ts b/jsonrpc/provider/test/index.test.ts index e1732c8b..c201aa70 100644 --- a/jsonrpc/provider/test/index.test.ts +++ b/jsonrpc/provider/test/index.test.ts @@ -63,7 +63,7 @@ describe("@walletconnect/jsonrpc-provider", () => { version: 2, sdkVersion: version, relayUrl: TEST_URL.ws.good, - projectId: "3cbaa32f8fbf3cdcc87d27ca1fa68069", + projectId: "9acf8177401b786e74ffb6cbd5ac11fe", auth, }); diff --git a/jsonrpc/ws-connection/test/index.test.ts b/jsonrpc/ws-connection/test/index.test.ts index 349e94c5..9503e76e 100644 --- a/jsonrpc/ws-connection/test/index.test.ts +++ b/jsonrpc/ws-connection/test/index.test.ts @@ -35,7 +35,7 @@ const formatRelayUrl = async () => { version: 2, sdkVersion: version, relayUrl: RELAY_URL, - projectId: "3cbaa32f8fbf3cdcc87d27ca1fa68069", + projectId: "9acf8177401b786e74ffb6cbd5ac11fe", auth, }); }; From 0305e8396a4d0926013772d57e8bb60271674e56 Mon Sep 17 00:00:00 2001 From: Gancho Radkov Date: Fri, 9 Aug 2024 11:47:54 +0300 Subject: [PATCH 2/4] chore: test hardcoded projectID --- .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 03370873..24e05146 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,4 +65,4 @@ jobs: - name: Test run: npm run test -- --filter=./${{ matrix.test-prefix }} env: - TEST_PROJECT_ID: ${{ secrets.TEST_PROJECT_ID }} + TEST_PROJECT_ID: "9acf8177401b786e74ffb6cbd5ac11fe" From 2042ee6158b6f590316bed424a5dc7791be76977 Mon Sep 17 00:00:00 2001 From: Gancho Radkov Date: Fri, 9 Aug 2024 11:51:13 +0300 Subject: [PATCH 3/4] chore: updates outdated node version --- .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 24e05146..5ada207e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 16 + node-version: 18.x - name: Check node_modules cache id: cache-node-modules From 1bc9af305f0d56985d6f63cf6b565256f8dafa0e Mon Sep 17 00:00:00 2001 From: Gancho Radkov Date: Fri, 9 Aug 2024 11:53:14 +0300 Subject: [PATCH 4/4] chore: bump to node 20 --- .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 5ada207e..81621911 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 18.x + node-version: 20.x - name: Check node_modules cache id: cache-node-modules