Skip to content

Commit caf3e12

Browse files
authored
Fix CircleCI for PRs
1 parent 9a9abcf commit caf3e12

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.circleci/config.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,12 @@ jobs:
2020

2121
- run: npm run build:umd
2222

23-
- run: npm run test:compat
23+
- run:
24+
name: Compatibility Test
25+
command: |
26+
if [ -z "$CIRCLE_PR_NUMBER" ]; then
27+
npm run test:compat
28+
fi
2429
- run: npm run test
2530

2631
- store_test_results:

0 commit comments

Comments
 (0)