Skip to content

chore(deps-dev): bump electron from 43.2.0 to 43.4.0 in the root-npm-dependencies group across 1 directory #4443

chore(deps-dev): bump electron from 43.2.0 to 43.4.0 in the root-npm-dependencies group across 1 directory

chore(deps-dev): bump electron from 43.2.0 to 43.4.0 in the root-npm-dependencies group across 1 directory #4443

Workflow file for this run

# Copyright(C) 2025-2026 Advanced Micro Devices, Inc. All rights reserved.
# SPDX-License-Identifier: MIT
# This workflow runs code quality checks (linting) for the entire codebase
# Provides fast feedback on code quality before running platform-specific tests
# Platform: Linux/Ubuntu (cross-platform code analysis)
# Uses util/lint.py for consistency with local development (util/lint.ps1)
name: Code Quality (Lint)
on:
workflow_call:
push:
branches: [ main ]
paths:
- 'src/**'
- 'hub/**'
- 'tests/**'
- 'setup.py'
- 'pyproject.toml'
- 'util/lint.py'
- 'util/check_*.py'
- '.security-suppressions.json'
- '.github/dependabot.yml'
- '.github/workflows/lint.yml'
pull_request:
branches: [ main ]
types: [opened, synchronize, reopened, ready_for_review]
paths:
- 'src/**'
- 'hub/**'
- 'tests/**'
- 'setup.py'
- 'pyproject.toml'
- 'util/lint.py'
- 'util/check_*.py'
- '.security-suppressions.json'
- '.github/dependabot.yml'
- '.github/workflows/lint.yml'
merge_group:
workflow_dispatch:
# Cancel in-progress runs when a new run is triggered
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lint:
name: Run Code Quality Checks
runs-on: ubuntu-latest
timeout-minutes: 15
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false || contains(github.event.pull_request.labels.*.name, 'ready_for_ci')
steps:
- uses: actions/checkout@v7
- name: Free disk space
uses: ./.github/actions/free-disk-space
- name: Set up Python
uses: actions/setup-python@v7
with:
python-version: '3.12'
- name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install project dependencies
run: |
# Install project dependencies for import checks
# Linting tools are auto-downloaded by uvx
uv pip install --system -e .
- name: Run lint checks
run: |
python util/lint.py --all