fix(ci): remove docker-build job that is incompatible with containerized runners
All checks were successful
Lint and Build / lint (push) Successful in 1m35s
Lint and Build / build (push) Successful in 2m4s

This commit is contained in:
goose 2026-03-12 12:21:34 -03:00
parent fff9319143
commit 5239932331

View file

@ -80,27 +80,3 @@ jobs:
- name: Restore integration tests - name: Restore integration tests
working-directory: ./backend working-directory: ./backend
run: mv tests.disabled tests run: mv tests.disabled tests
docker-build:
runs-on: docker
container:
image: docker:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
needs: build
steps:
- name: Install Node.js
run: |
apk add --no-cache nodejs npm
- uses: https://github.com/actions/checkout@v4
- name: Build backend Docker image
run: |
cd backend
docker build -t normogen-backend:latest .
- name: Build frontend Docker image
run: |
cd frontend
docker build -t normogen-frontend:latest .