Skip to content

Commit

Permalink
Update travis to use the new name of the old schema, and divide the t…
Browse files Browse the repository at this point in the history
…est on several entries to make migration easier
  • Loading branch information
teoli2003 committed May 4, 2017
1 parent 22dff19 commit fe9f18c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .travis.yml
Expand Up @@ -4,7 +4,10 @@ before_script:
- npm install ajv-cli -g
script:
- find . -name \*.json | xargs -I {} jsonlint -q {}
- ajv validate -s compat-data.schema.json -d "{api/**/*.json,css/**/*.json,http/**/*.json,javascript/**/*.json}"
- ajv validate -s compat-data.schema.old.json -d "{api/**/*.json}"
- ajv validate -s compat-data.schema.old.json -d "{css/**/*.json}"
- ajv validate -s compat-data.schema.old.json -d "{http/**/*.json}"
- ajv validate -s compat-data.schema.old.json -d "{javascript/**/*.json}"
- ajv validate -s webextensions/browser-compat-data.schema.json -d webextensions/browser-compat-data.json
notifications:
email: false

0 comments on commit fe9f18c

Please sign in to comment.