Added circleci tests.

This commit is contained in:
Jeremy Nusser 2022-11-02 18:04:33 -05:00
parent 7555bee1cd
commit a5c77571f9
1 changed files with 16 additions and 0 deletions

16
.circleci/config.yml Normal file
View File

@ -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: .