From 832dff7ba45f2c56cfea2ccd672396bf55f8ddcb Mon Sep 17 00:00:00 2001 From: Alex Hsu Date: Wed, 19 Oct 2022 16:41:40 -0400 Subject: [PATCH] Add npm install before npm run build --- .circleci/config.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index da84084..7443a06 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,12 +22,14 @@ jobs: command: npm run lint - run: name: Build package - command: npm run build + command: | + npm install + npm run build - run: name: Run tests command: npm run test -- --headless workflows: - sample: + run-tests: jobs: - test-and-lint