Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: replaces no longer valid projectId for ci runs #186

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20.x

- name: Check node_modules cache
id: cache-node-modules
Expand Down Expand Up @@ -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"
2 changes: 1 addition & 1 deletion jsonrpc/provider/test/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ describe("@walletconnect/jsonrpc-provider", () => {
version: 2,
sdkVersion: version,
relayUrl: TEST_URL.ws.good,
projectId: "3cbaa32f8fbf3cdcc87d27ca1fa68069",
projectId: "9acf8177401b786e74ffb6cbd5ac11fe",
auth,
});

Expand Down
2 changes: 1 addition & 1 deletion jsonrpc/ws-connection/test/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const formatRelayUrl = async () => {
version: 2,
sdkVersion: version,
relayUrl: RELAY_URL,
projectId: "3cbaa32f8fbf3cdcc87d27ca1fa68069",
projectId: "9acf8177401b786e74ffb6cbd5ac11fe",
auth,
});
};
Expand Down
Loading