Skip to content
Open
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
4 changes: 2 additions & 2 deletions .tekton/integration-tests/lightspeed-console-pre-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ spec:
env:
- name: COMMIT_SHA
value: $(params.commit)
image: mcr.microsoft.com/playwright:v1.61.1-noble
image: mcr.microsoft.com/playwright:v1.62.0-noble

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
rg -n '"(`@playwright/test`|playwright)"' --glob 'package.json' --glob '*lock*' .

Repository: openshift/lightspeed-console

Length of output: 448


Align the Playwright image with the repo’s installed version. The lockfile resolves @playwright/test/playwright to 1.61.1, so mcr.microsoft.com/playwright:v1.62.0-noble is ahead of the dependency in both places. Bump the package/lockfile to 1.62.0 or pin the image back to 1.61.1.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.tekton/integration-tests/lightspeed-console-pre-commit.yaml at line 149,
Align the Playwright container image with the repository’s resolved Playwright
dependency: either update the package and lockfile entries to 1.62.0, or change
the image tag from 1.62.0-noble to 1.61.1-noble. Ensure both dependency
references and the image use the same version.

Source: MCP tools

resources:
limits:
memory: 4Gi
Expand Down Expand Up @@ -236,7 +236,7 @@ spec:
resources:
limits:
memory: 8Gi
image: mcr.microsoft.com/playwright:v1.61.1-noble
image: mcr.microsoft.com/playwright:v1.62.0-noble
script: |
echo "COMMIT_SHA: ${COMMIT_SHA}"
echo "BASE_URL: ${BASE_URL}"
Expand Down