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

chore(test): Fixes CI when testing floating dependencies #652

Merged
merged 1 commit into from
May 16, 2019
Merged
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
14 changes: 7 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
language: node_js
node_js:
- "6"
- '6'

branches:
only:
- master
- /^v\d+\.\d+\.\d+/ # version tags
- /^v\d+-(\d+|x)(-x)?/ # version branches
- /^v\d+\.\d+\.\d+/ # version tags
- /^v\d+-(\d+|x)(-x)?/ # version branches

addons:
chrome: stable
Expand All @@ -34,12 +34,12 @@ jobs:
include:
# runs tests with current locked deps and linting
- stage: test
name: "test"
name: 'test'
script:
- yarn lint
- yarn test
- name: "floating dependencies"
install: yarn install --no-lockfile --non-interactive
- name: 'floating dependencies'
install: yarn install --no-lockfile --non-interactive --ignore-engines
script: yarn test

# runs tests against each supported Ember version
Expand All @@ -60,7 +60,7 @@ jobs:
# runs deploy if running on a specific tag
- stage: deploy
if: tag IS present
name: "npm-publish"
name: 'npm-publish'
install: yarn global add [email protected]
script: auto-dist-tag --write
deploy:
Expand Down