Browse Source

fix(nocodb): Test commit for investingating issues with GH action

pull/4820/head
Muhammed Mustafa 2 years ago
parent
commit
b0d4d5a082
  1. 12
      .github/workflows/playwright-test-workflow.yml

12
.github/workflows/playwright-test-workflow.yml

@ -70,18 +70,6 @@ jobs:
run: | run: |
npm install npm install
npm run watch:run:playwright > ${{ inputs.db }}_${{ inputs.shard }}_test_backend.log & npm run watch:run:playwright > ${{ inputs.db }}_${{ inputs.shard }}_test_backend.log &
- name: Wait for backend
run: |
end=$((SECONDS+20))
while ! curl --output /dev/null --silent --head --fail http://localhost:8080; do
if [ $SECONDS -gt $end ]; then
echo "Backend not started"
curl --silent --head --fail http://localhost:8080;
exit 1
fi
printf '.'
sleep 2
done
- name: run frontend - name: run frontend
working-directory: ./packages/nc-gui working-directory: ./packages/nc-gui
run: npm run ci:run run: npm run ci:run

Loading…
Cancel
Save