From 5855d731b64aa56ff4ccf8d51f4d26c3e328e850 Mon Sep 17 00:00:00 2001 From: JManion32 Date: Sun, 1 Mar 2026 23:03:28 -0500 Subject: [PATCH 1/2] Added build test --- .github/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85a0db5..abda76c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,3 +79,21 @@ jobs: - name: Build Web UI run: npm run build + + docker-build: + name: Docker Build Test + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Build Docker image + uses: docker/build-push-action@v5 + with: + context: . + push: false + tags: web-ui:test \ No newline at end of file From ff90155a0de361d75ca4086828c467d37598393b Mon Sep 17 00:00:00 2001 From: JManion32 Date: Sun, 1 Mar 2026 23:23:09 -0500 Subject: [PATCH 2/2] Prettier --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abda76c..6b22b42 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,4 +96,4 @@ jobs: with: context: . push: false - tags: web-ui:test \ No newline at end of file + tags: web-ui:test