forked from html-next/vertical-collection
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Alex Navasardyan <[email protected]> Co-authored-by: Alex Navasardyan <[email protected]> Co-authored-by: Robert Wagner <[email protected]>
- Loading branch information
Showing
12 changed files
with
2,661 additions
and
1,887 deletions.
There are no files selected for viewing
This file contains 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,76 @@ | ||
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: | ||
[ | ||
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 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 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 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 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 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 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.