diff --git a/.travis.yml b/.travis.yml index 6c53fba944cd..c18b22b64cb0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,22 +11,28 @@ notifications: node_js: - '11' - '10' - - '9' - '8' - '6' install: - - yarn --ignore-engines + # This also runs a build as part of the postinstall + # bootstrap + - yarn --ignore-engines --frozen-lockfile script: - - commitlint-travis - - yarn check-format # TODO: Fix this check # - yarn workspace eslint-plugin docs:check - - yarn build - yarn test - - yarn integration-tests - yarn global add codecov after_success: - codecov branches: only: - master + +jobs: + include: + - stage: Code and Commit Formatting and Integration Tests + node_js: "11" + script: + - commitlint-travis + - yarn check-format + - yarn integration-tests