Fixed syntax errors in playwright.config.js (duplicate identifiers) Verified all E2E and Integration workflows have correct push triggers Confirmed immediate feedback loop for feature/hotfix branches Validated E2E environment by running core test suite (100% pass)
32 lines
725 B
YAML
32 lines
725 B
YAML
name: Docker Lint
|
|
|
|
on:
|
|
push:
|
|
branches: [ main, development, 'feature/**', 'hotfix/**' ]
|
|
paths:
|
|
- 'Dockerfile'
|
|
pull_request:
|
|
branches: [ main, development, 'feature/**', 'hotfix/**' ]
|
|
paths:
|
|
- 'Dockerfile'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
hadolint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
|
|
- name: Run Hadolint
|
|
uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5 # v3.3.0
|
|
with:
|
|
dockerfile: Dockerfile
|
|
config: .hadolint.yaml
|
|
failure-threshold: error
|