1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-18 13:48:58 +02:00

Make a copy of everything to work on a clean sheet

This commit is contained in:
Gastón Fournier 2025-04-17 14:03:51 +02:00
parent 5e380e24c1
commit 4623d1a8b6
No known key found for this signature in database
GPG Key ID: AF45428626E17A8E
2 changed files with 4 additions and 6 deletions

View File

@ -18,9 +18,11 @@ services:
image: node:20-alpine
working_dir: /app
volumes:
- ..:/app
- ..:/src
command: |
sh -c "echo \"Building frontend\" && \
sh -c " cp -r /src /app && \
echo \"Building frontend\" && \
corepack enable && \
yarn --cwd ./frontend install && \
echo \"Waiting for Unleash to start\" && \
npx wait-on http://unleash:4242/health && \

View File

@ -21,10 +21,6 @@ jobs:
echo "$GITHUB_CONTEXT"
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: |
corepack enable
yarn --cwd ./frontend install
- name: Start Unleash test instance
run: |
docker compose -f .github/docker-compose.test.yml up -d --wait -t 90