Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adicionando ESLint ao Travis #103

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 16 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,20 @@ node_js:
cache:
directories:
- node_modules
script:
- yarn run build

deploy:
provider: pages
skip_cleanup: true
github_token: $github_token
local_dir: public
fqdn: glossario.opendevufcg.org
on:
branch: master
jobs:
include:
- stage: lint
script: yarn run lint
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Talvez fosse massa deixar o lint e o build pra rodar em paralelo, pra diminuir o tempo, ao invés de quebrar em dois stages, colocar os dois scripts dentro de um stage só, o que achas?

- stage: build
script: yarn run build
- stage: deploy
script: skip
deploy:
provider: pages
skip_cleanup: true
github_token: $github_token
local_dir: public
fqdn: glossario.opendevufcg.org
on:
branch: master