Add GitHub actions - #12
Merged
Merged
Conversation
dervoeti
force-pushed
the
feat/github-actions
branch
5 times, most recently
from
February 20, 2026 15:59
da4c99b to
5bd572d
Compare
dervoeti
force-pushed
the
feat/github-actions
branch
from
February 20, 2026 16:17
5bd572d to
9fa19f0
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #4
The Github Actions are largely in line with what we do in docker-images or for our operators.
build.yaml - Builds and publishes the container image and Helm chart on pushes to main, tags, and scheduled runs (like we do in our other repos). Uses https://github.com/stackabletech/actions for standard build, publish, sign, and preflight checks. Skips unnecessary work with a detect-changes gate.
The OpenShift Preflight check will currently fail, as we don't have a LICENSE in this repo.
pr_checks.yaml - Runs on every PR and merge group: runs pre-commit (which lints and type-checks the app, the Helm chart, YAML and Markdown, etc.) and runs the full Playwright E2E test suite.
I also moved the Helm chart from
deploy/helmtodeploy/helm/stackable-ui, because the publish-helm-chart action derives the chart name from the last path segment of chart-directory, which must match the name inChart.yaml.