From caf3e1278baabf47de35a3ef6aac86a6c3340f94 Mon Sep 17 00:00:00 2001 From: owen-m1 Date: Tue, 16 Jul 2019 10:58:09 -0400 Subject: [PATCH] Fix CircleCI for PRs --- .circleci/config.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a42a1c9..c2c0c13 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -20,7 +20,12 @@ jobs: - run: npm run build:umd - - run: npm run test:compat + - run: + name: Compatibility Test + command: | + if [ -z "$CIRCLE_PR_NUMBER" ]; then + npm run test:compat + fi - run: npm run test - store_test_results: -- GitLab