From 7034c041fe757d21b43ecf7362220bdf1d79982d Mon Sep 17 00:00:00 2001 From: Jonah Kagan Date: Mon, 9 Dec 2024 17:04:41 -0800 Subject: [PATCH] Regenerate CircleCI config --- .circleci/config.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7af3cf0fff..d7e56b7a18 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1148,6 +1148,29 @@ jobs: - store_test_results: path: libs/test-utils/reports/ + # @votingworks/test-utils-vitest + test-libs-test-utils-vitest: + executor: nodejs + resource_class: xlarge + steps: + - checkout-and-install + - run: + name: Build + command: | + pnpm --dir libs/test-utils-vitest build + - run: + name: Lint + command: | + pnpm --dir libs/test-utils-vitest lint + - run: + name: Test + command: | + pnpm --dir libs/test-utils-vitest test + environment: + JEST_JUNIT_OUTPUT_DIR: ./reports/ + - store_test_results: + path: libs/test-utils-vitest/reports/ + # @votingworks/types test-libs-types: executor: nodejs @@ -1471,6 +1494,7 @@ workflows: - test-libs-printing - test-libs-res-to-ts - test-libs-test-utils + - test-libs-test-utils-vitest - test-libs-types - test-libs-types-rs - test-libs-ui