From a5c77571f91333cc85a969b7d30273bc7ffb02bb Mon Sep 17 00:00:00 2001 From: Jeremy Nusser Date: Wed, 2 Nov 2022 18:04:33 -0500 Subject: [PATCH] Added circleci tests. --- .circleci/config.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..9f5a562 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,16 @@ +jobs: + build_and_test: # this can be any name you choose + executor: node/default # use the default executor defined within the orb + steps: + - checkout + - node/install-packages: + pkg-manager: yarn + - run: + command: yarn test + name: Run tests + - run: + command: yarn build + name: Build app + - persist_to_workspace: + root: ~/ + paths: . \ No newline at end of file