Skip to content

Commit

Permalink
ci(travis): Move flow typechecking to separate job in test stage (#2683)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcous authored Nov 15, 2018
1 parent aae76a4 commit 6f8b2c9
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ jobs:
install:
- make install-js
script:
- make -j 2 test-js check-js lint-js lint-css
- make test-js
- make lint-js lint-css
- make -C components
- make -C protocol-designer
after_success:
Expand All @@ -98,6 +99,15 @@ jobs:
bucket: opentrons-components
upload-dir: $TRAVIS_BRANCH

# typecheck JavaScript projects
- stage: test
name: 'JS type checks'
language: node_js
install:
- make install-js
script:
- make check-js

- # build the Opentrons App for POSIX (dev branch builds)
<<: *app_stage_build
name: 'Build/deploy Opentrons App for POSIX (unsigned dev builds)'
Expand Down

0 comments on commit 6f8b2c9

Please sign in to comment.