From eb266a899bc0c1b5c64cfef06e2f756630d90932 Mon Sep 17 00:00:00 2001 From: Thibaut Sardan Date: Tue, 28 Nov 2023 14:21:46 +0000 Subject: [PATCH] WC project id --- .github/workflows/cypress-tests.yaml | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cypress-tests.yaml b/.github/workflows/cypress-tests.yaml index 69b93293..4b21dbb2 100644 --- a/.github/workflows/cypress-tests.yaml +++ b/.github/workflows/cypress-tests.yaml @@ -51,6 +51,8 @@ jobs: uses: cypress-io/github-action@v6 with: install-command: yarn install + env: + VITE_WALLETCONNECT_PROJECT_ID: ${{ secrets.WALLETCONNECT_PROJECT_ID }} start: | npm run start:chopsticks yarn ui:start-with-chopsticks diff --git a/package.json b/package.json index c25a4d73..66680069 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ "lint": "yarn workspaces foreach run lint", "lint:fix": "yarn workspaces foreach run lint:fix", "formatAll": "prettier --write .", - "start:chopsticks-test-build-and-launch-all": "concurrently --kill-others 'npm run docker:down && npm run docker:db' 'npm run start:chopsticks' 'npm run ui:start-with-chopsticks' 'npm run build:indexer && npm run indexer:start:chopsticks-local' 'npm run start:graphql-server'", + "start:chopsticks-test-build-and-launch-all": "concurrently --kill-others 'npm run start:chopsticks' 'npm run ui:start-with-chopsticks' 'npm run docker:down && npm run docker:db && npm run build:indexer && npm run indexer:start:chopsticks-local' 'npm run start:graphql-server'", "start:chopsticks": "npx --yes @acala-network/chopsticks@0.9.3 --config chopsticks-config.yml", "start:graphql-server": "cd squid && npm run start:graphql-server", "indexer:start:chopsticks-ci": "cd squid && npm run start:chopsticks-ci",