Skip to content

Commit

Permalink
!!!
Browse files Browse the repository at this point in the history
  • Loading branch information
ndelangen committed Jan 31, 2024
1 parent 62d5aac commit b6aa557
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit b6aa557

Please sign in to comment.