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:
parent
5e380e24c1
commit
4623d1a8b6
6
.github/docker-compose.test.yml
vendored
6
.github/docker-compose.test.yml
vendored
@ -18,9 +18,11 @@ services:
|
|||||||
image: node:20-alpine
|
image: node:20-alpine
|
||||||
working_dir: /app
|
working_dir: /app
|
||||||
volumes:
|
volumes:
|
||||||
- ..:/app
|
- ..:/src
|
||||||
command: |
|
command: |
|
||||||
sh -c "echo \"Building frontend\" && \
|
sh -c " cp -r /src /app && \
|
||||||
|
echo \"Building frontend\" && \
|
||||||
|
corepack enable && \
|
||||||
yarn --cwd ./frontend install && \
|
yarn --cwd ./frontend install && \
|
||||||
echo \"Waiting for Unleash to start\" && \
|
echo \"Waiting for Unleash to start\" && \
|
||||||
npx wait-on http://unleash:4242/health && \
|
npx wait-on http://unleash:4242/health && \
|
||||||
|
4
.github/workflows/e2e.frontend.yaml
vendored
4
.github/workflows/e2e.frontend.yaml
vendored
@ -21,10 +21,6 @@ jobs:
|
|||||||
echo "$GITHUB_CONTEXT"
|
echo "$GITHUB_CONTEXT"
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Install dependencies
|
|
||||||
run: |
|
|
||||||
corepack enable
|
|
||||||
yarn --cwd ./frontend install
|
|
||||||
- name: Start Unleash test instance
|
- name: Start Unleash test instance
|
||||||
run: |
|
run: |
|
||||||
docker compose -f .github/docker-compose.test.yml up -d --wait -t 90
|
docker compose -f .github/docker-compose.test.yml up -d --wait -t 90
|
||||||
|
Loading…
Reference in New Issue
Block a user