Skip to content

Fix db.sh and hardcode password (#6595) #605

Fix db.sh and hardcode password (#6595)

Fix db.sh and hardcode password (#6595) #605

---
name: Run integration tests
on: [push, pull_request]
jobs:
run-tests:
name: 'Runs integration tests'
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
with:
submodules: recursive
- name: Build and run OS4 Dev
run: make run-dev ARGS="-d"
- name: Wait for dev setup
uses: iFaxity/wait-on-action@v1
with:
resource: https://localhost:8000
timeout: 300000
- name: Start tests
working-directory: "./openslides-client"
run: make run-playwright
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: "./openslides-client/client/tests/playwright-report/"
retention-days: 7
- name: Shut down dev setup
if: always()
run: make stop-dev