Skip to content

Commit c61cc44

Browse files
authored
Merge pull request #1722 from kzys/separate-js-tests
Run Frontend's tests separately
2 parents b4cba84 + 81d3449 commit c61cc44

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.travis.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,22 @@ matrix:
4848
allow_failures:
4949
- rust: nightly
5050
include:
51-
- rust: stable
51+
- name: Backend
52+
rust: stable
5253
before_install:
53-
- nvm install 10
54-
- npm ci
5554
- rustup component add rustfmt-preview
5655
- rustup component add clippy-preview
5756
script:
5857
- cargo fmt -- --check
5958
- cargo clippy --all-targets --all-features --all
6059
- cargo test
60+
- name: Frontend
61+
language: node_js
62+
node_js: 10
63+
install:
64+
- npm ci
65+
before_script: skip
66+
script:
6167
- npm run lint:js
6268
- npm test
6369
- rust: beta

0 commit comments

Comments
 (0)