diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 06f30b7b0..304c483de 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -1,4 +1,4 @@ -name: lint +name: lint & check bundle on: push: @@ -33,4 +33,14 @@ jobs: ${{ runner.os }}-go- - name: Linting, Formatting & vetting - run: make lint \ No newline at end of file + run: make lint + + - name: install dependencies + run: cicd-scripts/install-dependencies.sh + + - name: Make bundle + run: make bundle + + # We exclude the dockerfile as we have manually modified that to use a different user + - name: check diff + run: git diff --exit-code -- . ':(exclude)operators/multiclusterobservability/bundle.Dockerfile'