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