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

CI - Run all ember-try scenarios despite failure #156

Merged
merged 3 commits into from
Oct 26, 2021
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
32 changes: 5 additions & 27 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,17 @@ name: CI
on:
push:
branches:
- main
- master
pull_request: {}

env:
NODE_VERSION: '12'
NODE_VERSION: 12

jobs:
lint:
name: Lint
test:
name: Tests
runs-on: ubuntu-latest
timeout-minutes: 20

steps:
- uses: actions/checkout@v2

Expand All @@ -31,33 +29,14 @@ jobs:
- name: Lint
run: yarn run lint

test:
name: Tests
needs: lint
runs-on: ubuntu-latest
timeout-minutes: 20

steps:
- uses: actions/checkout@v2

- name: Install Node
uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
cache: yarn

- name: Install Dependencies
run: yarn install --frozen-lockfile

- name: Run Tests
run: yarn run test:ember

floating:
name: Floating Dependencies
needs: lint
needs: test
runs-on: ubuntu-latest
timeout-minutes: 20

steps:
- uses: actions/checkout@v2

Expand All @@ -77,9 +56,8 @@ jobs:
needs: test
runs-on: ubuntu-latest
timeout-minutes: 20

strategy:
fail-fast: true
fail-fast: false
matrix:
try-scenario:
- ember-lts-3.16
Expand Down