diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 000000000..0971d2ed2 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,14 @@ +version: 2.1 +orbs: + node: circleci/node@4.1.0 +jobs: + build: + executor: + name: node/default + tag: '14' + steps: + - checkout + - node/with-cache: + steps: + - run: yarn + - run: yarn test