Update CI to only test consistency if regular tests pass

This commit is contained in:
Ethan P 2020-02-19 21:02:58 -08:00
parent c070ae7f3a
commit f7200c7086
No known key found for this signature in database
GPG Key ID: 6963FD04F6CF35EA

View File

@ -52,7 +52,7 @@ jobs:
- store_artifacts: - store_artifacts:
path: bin path: bin
test-snapshots: test:
executor: linux_alpine executor: linux_alpine
steps: steps:
- setup - setup
@ -60,7 +60,7 @@ jobs:
- build: - build:
minify: "all" minify: "all"
- run: - run:
name: "Test: Snapshots" name: "Test: Unit Tests / Snapshots"
command: ./test.sh command: ./test.sh
test-consistency: test-consistency:
@ -91,10 +91,10 @@ workflows:
default: default:
jobs: jobs:
- build - build
- test-snapshots: - test:
requires: [build] requires: [build]
- test-consistency: - test-consistency:
requires: [build] requires: [build, test]
- test-symlink: - test-symlink:
requires: [build] requires: [build]