From 79ea9ff9617f9d31777e5feff74ea71b4a96678b Mon Sep 17 00:00:00 2001 From: Jeremy Nusser Date: Wed, 2 Nov 2022 19:38:16 -0500 Subject: [PATCH] updated circleci. --- .circleci/config.yml | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ad178e4..217ca07 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,16 +1,22 @@ -version: '2.1' +version: 2.1 + orbs: - node: circleci/node@5.0.3 + node: circleci/node@x.y + jobs: - test: - executor: - name: node/default - tag: '16' + install-node-example: + docker: + - image: cimg/base:stable steps: - checkout - - node/install-packages: - pkg-manager: yarn - - run: - command: yarn run test - name: Run YARN tests + - node/install: + install-yarn: true + node-version: '16.17' + - run: node --version +workflows: + test_my_app: + jobs: + - install-node-example + +