Skip to content

Commit

Permalink
ci: Remove now-unneeded -- in yarn scripts (#4464)
Browse files Browse the repository at this point in the history
* travis: Remove now-unneeded `--` in yarn scripts

* appveyor: Remove now-unneeded `--` in yarn script
  • Loading branch information
kevinji authored and erikdesjardins committed Jan 3, 2018
1 parent 57f1c31 commit 2985ab1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Expand Up @@ -42,18 +42,18 @@ matrix:
include:
- env: RES_JOB=lint_flow
script:
- yarn run flow -- check --show-all-errors
- yarn run flow check --show-all-errors
- yarn run eslint
- yarn run sass-lint
- yarn run i18n-lint
- env: RES_JOB=test
script:
- yarn run coverage && yarn run report-coverage
- yarn run build -- chrome,firefox
- yarn run integration -- chrome --retries 2 && yarn run integration -- firefox --retries 2
- yarn run build chrome,firefox
- yarn run integration chrome --retries 2 && yarn run integration firefox --retries 2
- env: RES_JOB=build_deploy
script:
- yarn run build -- all
- yarn run build all
- yarn run manifoldjs-package
deploy:
- provider: releases
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -9,4 +9,4 @@ install:
- yarn install --frozen-lockfile
test_script:
- yarn test
- yarn run build -- all
- yarn run build all

0 comments on commit 2985ab1

Please sign in to comment.