From b6aa557808c6647ff5e12db54a301a68da022e6d Mon Sep 17 00:00:00 2001 From: Norbert de Langen Date: Wed, 31 Jan 2024 17:13:52 +0100 Subject: [PATCH] !!! --- .circleci/config.yml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1584655c71d4..e443c4dd9bd0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -361,7 +361,9 @@ jobs: at: . - run: name: Node 18 - command: npx nvm install v18.14.0 + command: | + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash + nvm install v18.14.0 - run: name: Running Test Runner command: yarn task --task test-runner --template $(yarn get-template --cadence << pipeline.parameters.workflow >> --task test-runner) --no-link --start-from=never --junit @@ -384,7 +386,9 @@ jobs: at: . - run: name: Node 18 - command: npx nvm install v18.14.0 + command: | + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash + nvm install v18.14.0 - run: name: Running Test Runner in Dev mode command: yarn task --task test-runner-dev --template $(yarn get-template --cadence << pipeline.parameters.workflow >> --task test-runner-dev) --no-link --start-from=never --junit @@ -426,7 +430,9 @@ jobs: at: . - run: name: Node 18 - command: npx nvm install v18.14.0 + command: | + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash + nvm install v18.14.0 - run: name: Running E2E Tests command: yarn task --task e2e-tests --template $(yarn get-template --cadence << pipeline.parameters.workflow >> --task e2e-tests) --no-link --start-from=never --junit @@ -452,7 +458,9 @@ jobs: at: . - run: name: Node 18 - command: npx nvm install v18.14.0 + command: | + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash + nvm install v18.14.0 - run: name: Running E2E Tests command: yarn task --task e2e-tests-dev --template $(yarn get-template --cadence << pipeline.parameters.workflow >> --task e2e-tests-dev) --no-link --start-from=never --junit @@ -478,7 +486,9 @@ jobs: at: . - run: name: Node 18 - command: npx nvm install v18.14.0 + command: | + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash + nvm install v18.14.0 - run: name: Running Bench command: yarn task --task bench --template $(yarn get-template --cadence << pipeline.parameters.workflow >> --task bench) --no-link --start-from=never --junit