-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
10,049 additions
and
11,763 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 |
---|---|---|
|
@@ -7,6 +7,9 @@ on: | |
- 'v*' | ||
pull_request: {} | ||
|
||
env: | ||
PNPM_VERSION: 6.29.1 | ||
|
||
concurrency: | ||
group: ci-${{ github.head_ref || github.ref }} | ||
cancel-in-progress: true | ||
|
@@ -18,32 +21,39 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: pnpm/[email protected] | ||
with: | ||
version: ${{ env.PNPM_VERSION }} | ||
- name: Install Node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 12.x | ||
cache: yarn | ||
node-version: 14.x | ||
cache: pnpm | ||
- name: Install Dependencies | ||
run: yarn install --frozen-lockfile | ||
run: pnpm install | ||
- name: Lint | ||
run: yarn lint | ||
run: pnpm run lint | ||
- name: Run Tests | ||
run: yarn test | ||
run: pnpm run test | ||
|
||
floating: | ||
name: "Floating Dependencies" | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
- uses: pnpm/[email protected] | ||
with: | ||
version: ${{ env.PNPM_VERSION }} | ||
- name: Install Node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 12.x | ||
cache: yarn | ||
node-version: 14.x | ||
cache: pnpm | ||
- name: Install Dependencies | ||
run: yarn install --no-lockfile | ||
run: pnpm install | ||
- name: Run Tests | ||
run: yarn test | ||
run: pnpm run test | ||
|
||
try-scenarios: | ||
name: ${{ matrix.try-scenario }} | ||
|
@@ -68,12 +78,15 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: pnpm/[email protected] | ||
with: | ||
version: ${{ env.PNPM_VERSION }} | ||
- name: Install Node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 12.x | ||
cache: yarn | ||
node-version: 14.x | ||
cache: pnpm | ||
- name: Install Dependencies | ||
run: yarn install --frozen-lockfile | ||
run: pnpm install | ||
- name: Run Tests | ||
run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }} | ||
run: pnpm exec ember try:one ${{ matrix.try-scenario }} |
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
Oops, something went wrong.