Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Test Features
on:
pull_request:
paths:
- .github/workflows/test.yaml
- packages/web/**
- packages/features/**
- yarn.lock
Expand Down Expand Up @@ -35,7 +36,8 @@ jobs:
- name: setup yarn
run: |
yarn install --frozen-lockfile --check-files
yarn bootstrap
npx lerna bootstrap
find . -name ".env.example" | sed "p;s/\.example//" | xargs -n2 cp -f
- name: Start test env
timeout-minutes: 1
run: |
Expand All @@ -49,8 +51,9 @@ jobs:
tail -f $TMPFILE &
echo "PID2=$!" >> $GITHUB_ENV

while ! grep "To access the server" $TMPFILE
do sleep 1; done
sleep 10
# while ! grep "To access the server" $TMPFILE
# do sleep 1; done
- name: Execute integration test with app
timeout-minutes: 5
run: |
Expand Down