Skip to content

Commit

Permalink
fix(DEVX-363): run all tests in all nodejs versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lojzatran committed Dec 16, 2024
1 parent c9f0332 commit 721f318
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,12 @@ jobs:
- run:
name: Running tests
command: yarn test --testPathIgnorePatterns='packages/platform-sdk/test/integration-tests'
- run:
name: Running integration tests
command: yarn test packages/platform-sdk/test/integration-tests --coverage
- codecov/upload:
file: coverage/clover.xml
flags: integrationtests

install_test_node_20:
executor: node_20
Expand All @@ -104,6 +110,17 @@ jobs:
name: Installing dependencies
command: yarn install --frozen-lockfile
- save_cache: *save_yarn_cache_node_20
- run:
name: Building packages
command: yarn build
- run:
name: Running example tests
command: |
cd examples
yarn test
- run:
name: Running tests
command: yarn test --testPathIgnorePatterns='packages/platform-sdk/test/integration-tests'
- run:
name: Running integration tests
command: yarn test packages/platform-sdk/test/integration-tests --coverage
Expand All @@ -120,6 +137,17 @@ jobs:
name: Installing dependencies
command: yarn install --frozen-lockfile
- save_cache: *save_yarn_cache_node_22
- run:
name: Building packages
command: yarn build
- run:
name: Running example tests
command: |
cd examples
yarn test
- run:
name: Running tests
command: yarn test --testPathIgnorePatterns='packages/platform-sdk/test/integration-tests'
- run:
name: Running integration tests
command: yarn test packages/platform-sdk/test/integration-tests --coverage
Expand Down

0 comments on commit 721f318

Please sign in to comment.