Skip to content
Open
Show file tree
Hide file tree
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
17 changes: 7 additions & 10 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 3 * * *' # daily, at 3am
- cron: "0 3 * * *" # daily, at 3am

jobs:
lint:
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
working-directory: test-apps/base-tests

typecheck:
name: '${{ matrix.typescript-scenario }}'
name: "${{ matrix.typescript-scenario }}"
runs-on: ubuntu-latest
timeout-minutes: 5
continue-on-error: true
Expand All @@ -75,17 +75,16 @@ jobs:
- run: pnpm prepack
working-directory: ./addon/

- name: 'Change base tests TS to ${{ matrix.typescript-scenario }}'
run: 'pnpm add --save-dev ${{ matrix.typescript-scenario}}'
- name: "Change base tests TS to ${{ matrix.typescript-scenario }}"
run: "pnpm add --save-dev ${{ matrix.typescript-scenario}}"
working-directory: ./test-apps/base-tests/

- name: 'Change ember-fetch TS to ${{ matrix.typescript-scenario }}'
run: 'pnpm add --save-dev ${{ matrix.typescript-scenario}}'
- name: "Change ember-fetch TS to ${{ matrix.typescript-scenario }}"
run: "pnpm add --save-dev ${{ matrix.typescript-scenario}}"
working-directory: ./test-apps/ember-fetch-v8

- run: pnpm --filter "*" test:ts;


try-scenarios:
timeout-minutes: 10
name: "Try: ${{ matrix.ember-try-scenario }} @ ${{ matrix.app }}"
Expand All @@ -97,7 +96,7 @@ jobs:
strategy:
fail-fast: false
matrix:
app:
app:
- test-apps/base-tests
ember-try-scenario:
- ember-4.0
Expand All @@ -110,8 +109,6 @@ jobs:
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 }}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
},
"packageManager": "pnpm@9.14.2",
"volta": {
"node": "22.10.0",
"node": "24.12.0",
"pnpm": "9.14.2"
},
"pnpm": {
"overrides": {
"ember-cli-htmlbars": "^7.0.1",
"@ember/test-waiters": "workspace:*"
}
}
Expand Down
Loading
Loading