Commit a5977f4d authored by Rémy Coutable's avatar Rémy Coutable

Don't fail the build if there is no coverage files

Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent 06092b75
...@@ -450,9 +450,9 @@ pages: ...@@ -450,9 +450,9 @@ pages:
script: script:
- mv public/ .public/ - mv public/ .public/
- mkdir public/ - mkdir public/
- mv coverage public/coverage-ruby - mv coverage/ public/coverage-ruby/ || true
- mv coverage-javascript/default/ public/coverage-javascript/ - mv coverage-javascript/default/ public/coverage-javascript/ || true
- mv eslint-report.html public/ - mv eslint-report.html public/ || true
artifacts: artifacts:
paths: paths:
- public - public
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment