mirror of
https://github.com/SamyRai/turash.git
synced 2025-12-26 23:01:33 +00:00
Compare commits
No commits in common. "e4b345fddc7f683cf484b03ef3ffc9ff364a87b9" and "13e814acda04ce1ac90b9b71e11711e12ef54f9b" have entirely different histories.
e4b345fddc
...
13e814acda
@ -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"
|
||||
|
||||
|
||||
@ -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 ./
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user