From 7d1151677a2956b332bc93a3b691f79034891934 Mon Sep 17 00:00:00 2001 From: sophian Date: Mon, 20 Nov 2023 11:42:41 -0500 Subject: [PATCH] Move env variables --- .github/workflows/e2e.yml | 2 +- tests/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index ed603042a7..3935bd9eb2 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -22,7 +22,7 @@ jobs: with: working-directory: tests install-command: yarn - command: CYPRESS_PRIVATE_KEY=${{secrets.CYPRESS_PRIVATE_KEY}} yarn e2e:run:ci + command: yarn e2e:run:ci browser: chrome config-file: synpress.config.js ci-build-id: '${{ github.sha }}-${{ github.workflow }}-${{ github.event_name }}' diff --git a/tests/package.json b/tests/package.json index 1d3d805ddf..b464d75965 100644 --- a/tests/package.json +++ b/tests/package.json @@ -5,7 +5,7 @@ "main": "index.js", "scripts": { "e2e:run": "synpress run -cf synpress.config.js", - "e2e:run:ci": "cross-env NETWORK_NAME=centrifuge RPC_URL=https://fullnode.development.cntrfg.com CHAIN_ID=2000 SYMBOL=DEVEL IS_TESTNET=true DEBUG=true synpress run -cf synpress.config.js --headless", + "e2e:run:ci": "cross-env CYPRESS_PRIVATE_KEY=a32b8805bc1f3ea6324614891e29f64578c76b27beaf24cbc5694753f638ad79 NETWORK_NAME=centrifuge RPC_URL=https://fullnode.development.cntrfg.com CHAIN_ID=2000 SYMBOL=DEVEL IS_TESTNET=true DEBUG=true synpress run -cf synpress.config.js --headless", "e2e:open": "synpress open -cf synpress.config.js" }, "author": "",