From 6e1438f0a01152bc936e6050a9603f1e8b29b01c Mon Sep 17 00:00:00 2001 From: David Barrat Date: Sun, 31 Mar 2024 22:50:10 +0200 Subject: [PATCH] adjust circleci config --- .circleci/config.yml | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9f6b1b2..84514c3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,9 +1,22 @@ version: 2.1 + orbs: - node: circleci/node@4.7 + node: circleci/node@4.1.0 + +jobs: + build: + docker: + - image: cimg/base:stable + steps: + - checkout + - node/install-packages: + pkg-manager: pnpm + - run: + name: Run tests + command: pnpm test + workflows: - unit_test: + version: 2 + build_and_test: jobs: - - node/test: - version: '19.6.0' - pkg-manager: pnpm \ No newline at end of file + - build \ No newline at end of file