-
Notifications
You must be signed in to change notification settings - Fork 76
Kick off 2.0-beta #321
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
Merged
Kick off 2.0-beta #321
Changes from 5 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
e824d7e
Kick off 2.0-beta
mixonic a6db653
Move to GH Actions, drop Ember 2.4 (#325)
mixonic 8cd20e1
Drop 2.4 (#326)
twokul 0e35cf9
Bump `ember-raf-scheduler` (#328)
twokul ef9e742
Remove .travis.yml (#329)
twokul 11b2ccd
Uncomment Ember test targets
twokul fea1138
pin ember-data
twokul 53edcfc
Set ember-compatibility-helpers to 1.2.1
RobbieTheWagner 5adde4b
Enable jQuery
RobbieTheWagner 0aec8e2
Update ci.yml
RobbieTheWagner 04fdaad
Update ci.yml
RobbieTheWagner 293076c
Restore support for Ember 2.x (#331)
mixonic 8dfd3a9
v2.0.0-0
mixonic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,77 @@ | ||
| name: Vertical Collection CI | ||
| on: | ||
| pull_request: | ||
| types: [opened, synchronize, reopened, ready_for_review] | ||
|
|
||
| jobs: | ||
| test: | ||
| name: Run Tests | ||
| runs-on: ubuntu-18.04 | ||
|
|
||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v2 | ||
|
|
||
| - name: Use Node 12 | ||
| uses: actions/setup-node@v2-beta | ||
| with: | ||
| node-version: 12.x | ||
|
|
||
| - name: Node Modules Cache | ||
| uses: actions/cache@v2 | ||
| with: | ||
| path: '**/node_modules' | ||
| key: ci-yarn-${{ hashFiles('**/yarn.lock') }} | ||
|
|
||
| - name: Install Dependencies | ||
| run: yarn install --frozen-lockfile | ||
|
|
||
| - name: Lint | ||
| run: yarn lint | ||
|
|
||
| - name: Run Tests | ||
| run: yarn test:ember | ||
| env: | ||
| CI: true | ||
|
|
||
| test-ember-try: | ||
| name: Run Tests | ||
| runs-on: ubuntu-18.04 | ||
| strategy: | ||
| matrix: | ||
| ember-version: | ||
| [ | ||
| # The test suite only support Ember 3.x | ||
| # ember-lts-2.8, | ||
| # ember-lts-2.12, | ||
| # ember-lts-2.18, | ||
| ember-lts-3.4, | ||
| ember-lts-3.8, | ||
| ember-lts-3.12, | ||
| ember-lts-3.16, | ||
| ember-lts-3.20, | ||
| ember-release, | ||
| ember-beta, | ||
| ember-canary, | ||
| ] | ||
|
|
||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v2 | ||
|
|
||
| - name: Use Node 12 | ||
| uses: actions/setup-node@v2-beta | ||
| with: | ||
| node-version: 12.x | ||
|
|
||
| - name: Node Modules Cache | ||
| uses: actions/cache@v2 | ||
| with: | ||
| path: '**/node_modules' | ||
| key: ci-yarn-${{ matrix.ember-version }}-${{ hashFiles('**/yarn.lock') }} | ||
|
|
||
| - name: Install | ||
| run: yarn install --frozen-lockfile --ignore-engines | ||
|
|
||
| - name: Run Tests | ||
| run: node_modules/.bin/ember try:one ${{ matrix.ember-version }} --skip-cleanup | ||
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1 @@ | ||
| { | ||
| "babel": { | ||
| "includePolyfill": true | ||
| } | ||
| } | ||
| {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.