From f250f1ce0913d85baf93012f4795e470f77b69d2 Mon Sep 17 00:00:00 2001 From: Edd Date: Tue, 30 Aug 2022 13:04:27 +0000 Subject: [PATCH] chore: add env vars as cache inputs (#1191) --- nx.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/nx.json b/nx.json index 5291fc80d..afba81f73 100644 --- a/nx.json +++ b/nx.json @@ -1,5 +1,5 @@ { - "npmScope": "@vegaprotocol", + "npmScope": "vegaprotocol", "affected": { "defaultBase": "master" }, @@ -18,7 +18,16 @@ "runner": "@nrwl/nx-cloud", "options": { "cacheableOperations": ["build", "lint", "test", "e2e"], - "accessToken": "OTY4ZjdlZTItNGIwNy00NDcyLTllZjctOWIzYTg1NWE0Yzg1fHJlYWQtd3JpdGU=" + "accessToken": "OTY4ZjdlZTItNGIwNy00NDcyLTllZjctOWIzYTg1NWE0Yzg1fHJlYWQtd3JpdGU=", + "runtimeCacheInputs": [ + "echo $NX_VEGA_NETWORKS", + "echo $NX_VEGA_ENV", + "echo $NX_VEGA_URL", + "echo $NX_TENDERMINT_URL", + "echo $NX_TENDERMINT_WEBSOCKET_URL", + "echo $NX_USE_ENV_OVERRIDES", + "echo $NX_ETHEREUM_PROVIDER_URL" + ] } } },