Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
f7b0bd6
Move tests to test-app
NullVoxPopuli Nov 25, 2025
9effd7a
Fix imports
NullVoxPopuli Nov 25, 2025
212621d
Update ci
NullVoxPopuli Nov 25, 2025
4262fd0
ope
NullVoxPopuli Nov 26, 2025
48f1fec
Embroider guide the way
NullVoxPopuli Nov 26, 2025
df0e9c2
Fix write-snippets
NullVoxPopuli Nov 26, 2025
51c9a82
Fix location and naming of number-slide
NullVoxPopuli Nov 26, 2025
13b4d73
Fix a reference to NumberSlide
NullVoxPopuli Nov 26, 2025
318e620
Add legacy ember-data packages
NullVoxPopuli Nov 26, 2025
4ddc0d3
Move and rename dbmonRow and fix the reference
NullVoxPopuli Nov 26, 2025
6e77bd5
Add warp-drives config
NullVoxPopuli Nov 26, 2025
a3f70d4
Add the store service
NullVoxPopuli Nov 26, 2025
88f768f
Handle some deprecations
NullVoxPopuli Nov 26, 2025
3093186
app fixes
NullVoxPopuli Nov 26, 2025
d27bf55
Is this how you enable array prototype extensions?
NullVoxPopuli Nov 26, 2025
bb05782
Up
NullVoxPopuli Nov 26, 2025
fc86807
Add Bootstrap and update loading spinner styles
NullVoxPopuli Jan 18, 2026
2f2c1c9
🤔
NullVoxPopuli Jan 18, 2026
3614788
Revert cleanup for comparison
NullVoxPopuli Jan 18, 2026
25b642f
Deps
NullVoxPopuli Jan 18, 2026
82d1667
Update some htings
NullVoxPopuli Jan 18, 2026
cada6b4
Sus
NullVoxPopuli Jan 18, 2026
a87ea13
Hm
NullVoxPopuli Jan 18, 2026
72e3a8e
3.28 needs cached decorator polyfill
NullVoxPopuli Jan 18, 2026
f510bd7
lint:fix
NullVoxPopuli Jan 18, 2026
2580ee4
prettier
NullVoxPopuli Jan 18, 2026
b448c54
fix
NullVoxPopuli Jan 18, 2026
45e31af
Rollback sharedWorkspaceLockfile: false
NullVoxPopuli Jan 18, 2026
09358b6
Make 3.28 tests pass
NullVoxPopuli Jan 18, 2026
290e549
Account for pre-service services
NullVoxPopuli Jan 18, 2026
7f0eccd
Revert "Revert cleanup for comparison"
NullVoxPopuli Jan 18, 2026
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
72 changes: 0 additions & 72 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,6 @@ jobs:
- uses: wyvox/action-setup-pnpm@v3
- run: pnpm lint

test_old:
name: "Old: Tests"
runs-on: ubuntu-latest
timeout-minutes: 12

steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
- run: . bin/restore-env.sh && pnpm ember build
working-directory: vertical-collection
- name: Run Tests
uses: nick-fields/retry@v2
with:
timeout_minutes: 2
max_attempts: 5
command: pnpm test:ci

test:
name: "Tests"
runs-on: ubuntu-latest
Expand All @@ -48,26 +31,6 @@ jobs:
- run: pnpm test
working-directory: test-app

# TODO: Delete when tests are moved to test app
floating_old:
name: "Old: Floating Dependencies"
runs-on: ubuntu-latest
timeout-minutes: 12

steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
with:
args: --no-lockfile
- run: pnpm ember build
working-directory: vertical-collection
- name: Run Tests
uses: nick-fields/retry@v2
with:
timeout_minutes: 2
max_attempts: 5
command: cd vertical-collection && CI=true pnpm ember test --path=dist

floating:
name: "Floating Dependencies"
runs-on: ubuntu-latest
Expand All @@ -81,41 +44,6 @@ jobs:
- run: pnpm test
working-directory: test-app

try-scenarios_old:
name: "Old: ${{ matrix.try-scenario }}"
runs-on: ubuntu-latest
timeout-minutes: 12

strategy:
fail-fast: false
matrix:
try-scenario:
- ember-lts-3.28
- ember-lts-4.12
- ember-lts-5.12
- ember-6.1
- ember-release
- ember-beta
- ember-canary
- embroider-safe
- embroider-optimized

steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
- name: Ember-Try Setup
run: node_modules/.bin/ember try:one ${{ matrix.try-scenario }} --skip-cleanup --- bin/stash-env.sh
working-directory: vertical-collection
- name: Run Build
run: . bin/restore-env.sh && pnpm ember build
working-directory: vertical-collection
- name: Run Tests
uses: nick-fields/retry@v2
with:
timeout_minutes: 2
max_attempts: 5
command: pnpm test:ci

try-scenarios:
name: ${{ matrix.try-scenario }}
runs-on: ubuntu-latest
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"url": "git@github.com:html-next/vertical-collection.git"
},
"scripts": {
"update:snippets": "node ./scripts/write-snippets.mjs",
"build": "pnpm --filter '*' build",
"lint": "pnpm --filter '*' lint",
"lint:fix": "pnpm --filter '*' lint:fix",
Expand All @@ -17,7 +18,7 @@
},
"packageManager": "pnpm@10.10.0",
"volta": {
"node": "18.20.5",
"node": "24.11.0",
"pnpm": "10.10.0"
}
}
Loading