Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b22c8a5

Browse files
authoredOct 13, 2018
Merge pull request #47 from smalruby/enable_lint_and_unit_test_for_travisci
TravisCIでESLintとtest:unitを有効にした
2 parents d676c0d + 66f5094 commit b22c8a5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ install:
1717
- npm --production=false install
1818
- npm --production=false update
1919
script:
20-
- npm run clean && $(npm bin)/webpack --colors --bail
20+
- npm run test:lint
21+
- npm run test:unit
2122
deploy:
2223
- provider: script
2324
on:
2425
branch:
2526
- develop
2627
skip_cleanup: true
27-
script: npm run deploy -- -x -r https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git
28-
branches:
29-
only:
30-
- develop
28+
script:
29+
- npm run clean && $(npm bin)/webpack --colors --bail
30+
- npm run deploy -- -x -r https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git

0 commit comments

Comments
 (0)
Failed to load comments.