Add test to prove ember-fetch@8 works with the current test-waiter system/integration #2312
Workflow file for this run
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
name: CI Build | |
on: | |
push: | |
branches: | |
- master | |
- 'v*' | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 3 * * *' # daily, at 3am | |
jobs: | |
test: | |
timeout-minutes: 10 | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: wyvox/action-setup-pnpm@v3 | |
- run: pnpm lint | |
- run: pnpm test:ember | |
working-directory: test-apps/base-tests | |
floating-dependencies: | |
timeout-minutes: 10 | |
name: "Floating Dependencies" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: wyvox/action-setup-pnpm@v3 | |
- run: pnpm test:ember | |
working-directory: test-apps/base-tests | |
try-scenarios: | |
timeout-minutes: 10 | |
name: "Try: ${{ matrix.ember-try-scenario }} @ ${{ matrix.app }}" | |
runs-on: ubuntu-latest | |
needs: test | |
strategy: | |
fail-fast: false | |
matrix: | |
app: | |
- test-apps/base-tests | |
- test-apps/ember-concurrency-v2 | |
ember-try-scenario: | |
- ember-lts-3.16 | |
- ember-lts-3.20 | |
- ember-lts-3.24 | |
- ember-lts-3.28 | |
- ember-lts-4.12 | |
- ember-lts-5.4 | |
- ember-release | |
- ember-beta | |
- ember-canary | |
- 3.x-embroider-safe | |
- 3.x-embroider-optimized | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: wyvox/action-setup-pnpm@v3 | |
with: | |
node-version: 18.18.1 | |
- name: test | |
run: node_modules/.bin/ember try:one ${{ matrix.ember-try-scenario }} --skip-cleanup | |
working-directory: ${{ matrix.app }} |