Compare commits

..

No commits in common. "e4b345fddc7f683cf484b03ef3ffc9ff364a87b9" and "13e814acda04ce1ac90b9b71e11711e12ef54f9b" have entirely different histories.

2 changed files with 1 additions and 5 deletions

View File

@ -255,8 +255,7 @@ jobs:
working-directory: bugulma/backend
run: |
# Check if Docker is available for testcontainers
# Allow forcing Docker testing with DOCKER_FORCE=true (useful for local development)
if [ "$DOCKER_FORCE" = "true" ] || (command -v docker &> /dev/null && docker info &> /dev/null 2>&1); then
if command -v docker &> /dev/null && docker info &> /dev/null; then
echo "✅ Docker available - running all tests with testcontainers"
echo "🧪 Testcontainers will provide isolated PostgreSQL instances"

View File

@ -4,9 +4,6 @@ FROM node:18-alpine AS builder
# Set working directory
WORKDIR /app
# Enable corepack and set yarn version
RUN corepack enable && corepack prepare yarn@4.12.0 --activate
# Copy package files
COPY package*.json yarn.lock ./