Skip to content

Workflow file for this run

---

Check failure on line 1 in .github/workflows/lint.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/lint.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: vsns
name: Lint
"on": push
jobs:
vsns:
runs-on: ubuntu-22.04
outputs:
# renovate datasource: docker, depName: hadolint/hadolint
hadolint: 2.12.0
build:
name: Lint
runs-on: ubuntu-22.04
needs: [vsns]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Create dist
run: |
npm install
npm run dist
- name: Lint Dockerfile
run: docker run --rm -i hadolint/hadolint:${{ needs.vsns.outputs.hadolint }} < Dockerfile
- name: Check if build left artifacts
run: git diff --exit-code