From d296a3111f1e29092c4ca77a248617885762684f Mon Sep 17 00:00:00 2001 From: Jeremy Nusser Date: Wed, 2 Nov 2022 19:31:36 -0500 Subject: [PATCH] UUpdated circleci to test yarn. --- .circleci/config.yml | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 76a5dbe..edea7b0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,9 +1,16 @@ +version: '2.1' orbs: - hugo: circleci/hugo@0.1 -version: 2.1 -workflows: - main: - jobs: - - hugo/build: - html-proofer: true - version: '0.105.0' + node: circleci/node@x.y +jobs: + test: + executor: + name: node/default + tag: '16' + steps: + - checkout + - node/install-packages: + pkg-manager: yarn + - run: + command: yarn run test + name: Run YARN tests +