• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

agama-project / agama / 26954655031
83%

Build:
DEFAULT BRANCH: master
Ran 04 Jun 2026 01:29PM UTC
Jobs 3
Files 934
Run time 2min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

04 Jun 2026 01:25PM UTC coverage: 81.486%. Remained the same
26954655031

push

github

web-flow
fix(deps): add @patternfly/react-styles as an explicit dependency (#3584)

## Problem

PR #3581 introduced `@patternfly/react-code-editor` and intentionally
froze all PatternFly dependencies to `6.4.x` to avoid a known layout
regression in `6.5.1`. However, `@patternfly/react-styles` was not added
as an explicit dependency, leaving a gap.

## Root cause

`@patternfly/react-code-editor` lists `@patternfly/react-styles` as
`workspace:^` inside the PatternFly monorepo. When published to npm,
that becomes `^6.4.0`, which npm resolves to `6.5.1` (latest
satisfying):


https://github.com/patternfly/patternfly-react/blob/189eb789f/packages/react-code-editor/package.json#L36

```
@patternfly/react-code-editor@6.4.1
└── @patternfly/react-styles@^6.4.0  →  resolved to 6.5.1
```

Other PatternFly packages also pull `react-styles` as a transitive
dependency, but at a different version. npm cannot flatten two different
versions of the same package to the same root `node_modules`. With
`react-styles` no longer in node_modules/@patternfly/ root, direct
imports in the codebase break:

```ts
import textStyles from "@patternfly/react-styles/css/utilities/Text/text";
import spacingStyles from "@patternfly/react-styles/css/utilities/Spacing/spacing";
```

## Fix

Added `@patternfly/react-styles@6.4.0` as an explicit dependency in
`package.json` and pinned the resolved version in `package-lock.json`.
This completes the freeze that #3581 started for all other PatternFly
packages, and collapses all transitive resolutions of `react-styles` to
the same version, giving npm a single version to hoist with no conflict.

## Impact

- Restores all PatternFly utility style imports broken after #3581.
- Keeps the entire PatternFly dependency set on a consistent `6.4.x`
baseline, as originally intended.

4401 of 6437 branches covered (68.37%)

Branch coverage included in aggregate %.

23912 of 28309 relevant lines covered (84.47%)

98.32 hits per line

Subprojects
ID Flag name Job ID Ran Files Coverage
3 web 26954655031.3 04 Jun 2026 01:29PM UTC 617
77.56
GitHub Action Run
1 rust 19474749743.1 18 Nov 2025 05:18PM UTC 185
22.45
GitHub Action Run
3 service 26586921140.3 28 May 2026 04:15PM UTC 317
92.47
GitHub Action Run
Source Files on build 26954655031
  • Tree
  • List 934
  • Changed 2
  • Source Changed 2
  • Coverage Changed 2
Coverage ∆ File Lines Relevant Covered Missed Hits/Line Branch Hits Branch Misses
  • Back to Repo
  • Github Actions Build #26954655031
  • 55340f64 on github
  • Prev Build on master (#26945170747)
  • Next Build on master (#26955630396)
  • Delete
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc