Skip to content
Merged
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
1 change: 1 addition & 0 deletions .changepacks/changepack_log_wyLtroNWIgdyfCWH3mfY.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"changes":{"bindings/devup-ui-wasm/package.json":"Patch","packages/components/package.json":"Patch","packages/react/package.json":"Patch","packages/vite-plugin/package.json":"Patch","packages/next-plugin/package.json":"Patch","packages/webpack-plugin/package.json":"Patch","packages/rsbuild-plugin/package.json":"Patch","packages/bun-plugin/package.json":"Patch","packages/plugin-utils/package.json":"Patch"},"note":"Migrate group selector to data-group attribute. The compiler now emits a single :is([role=group],[data-group]):<pseudo> & selector for _groupHover/_groupFocus/_groupActive/_groupDisabled and the Tailwind group-* variants, so existing role=\"group\" markup keeps working alongside the new data-group form. role=\"group\" matching is deprecated and will be removed in v2 — migrate to data-group. The bundled Toggle component now uses data-group.","date":"2026-05-25T00:00:00.000000000Z"}
26 changes: 13 additions & 13 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
key: cargo-benchmark-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}
- uses: oven-sh/setup-bun@v2
with:
bun-version: '1.3.9'
bun-version: "1.3.9"
name: Install bun

- name: Cache bun dependencies
Expand All @@ -43,9 +43,9 @@ jobs:
key: bun-benchmark-${{ runner.os }}-${{ hashFiles('**/bun.lock') }}
- uses: jetli/wasm-pack-action@v0.4.0
with:
version: 'latest'
version: "latest"
- name: Install Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
registry-url: "https://registry.npmjs.org"
node-version: 24
Expand All @@ -61,12 +61,12 @@ jobs:
uses: actions/checkout@v6

- uses: actions-rust-lang/setup-rust-toolchain@v1

- name: Install cargo-binstall
run: curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
- name: Install cargo-tarpaulin
run: cargo binstall cargo-tarpaulin --no-confirm --force

- name: Cache cargo registry + target
uses: actions/cache@v5
with:
Expand All @@ -79,7 +79,7 @@ jobs:

- uses: oven-sh/setup-bun@v2
with:
bun-version: '1.3.9'
bun-version: "1.3.9"
name: Install bun

- name: Cache bun dependencies
Expand All @@ -90,9 +90,9 @@ jobs:

- uses: jetli/wasm-pack-action@v0.4.0
with:
version: 'latest'
version: "latest"
- name: Install Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
registry-url: "https://registry.npmjs.org"
node-version: 24
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
run: bunx playwright test --update-snapshots
- name: Commit E2E Snapshots
if: steps.check-snapshots.outputs.count == '0' && github.event_name == 'pull_request'
uses: stefanzweifel/git-auto-commit-action@v5
uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: "chore: generate e2e visual snapshots from CI"
file_pattern: "e2e/**/*-snapshots/*.png"
Expand All @@ -154,21 +154,21 @@ jobs:
- name: Run E2E Tests (singleCss)
run: bun run test:e2e
- name: Upload singleCss Playwright Report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: ${{ !cancelled() }}
with:
name: playwright-report-singlecss
path: playwright-report/
retention-days: 30
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v5
with:
path: ./apps/landing/out
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
- uses: actions/deploy-pages@v4
- uses: actions/deploy-pages@v5
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
- name: Upload to codecov.io
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ test-results
playwright-report
.omc
.playwright-mcp
.omo
Loading
Loading