From b1b65a98f93e0a68a2318399c652de131c91f4f5 Mon Sep 17 00:00:00 2001 From: Gleb Bahmutov Date: Tue, 5 May 2020 14:06:08 -0400 Subject: [PATCH] fix: build dist folder before npm release --- circle.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/circle.yml b/circle.yml index d1090173..f173396e 100644 --- a/circle.yml +++ b/circle.yml @@ -17,6 +17,9 @@ workflows: - run: name: Linting code ๐Ÿงน command: npm run lint + - run: + name: Build folder ๐Ÿ— + command: npm run build - cypress/run: name: Test @@ -53,6 +56,7 @@ workflows: # into thinking this is NOT a pull request. # (under the hood the module env-ci is used to check if this is a PR) command: | + npm run build CIRCLE_PR_NUMBER= \ CIRCLE_PULL_REQUEST= \ CI_PULL_REQUEST= \