Skip to content

Forgot to remote .only #679

Forgot to remote .only

Forgot to remote .only #679

Workflow file for this run

name: Soak Test
on: push
jobs:
soak-test:
timeout-minutes: 15
# TODO should we use the same container as circle & central?
runs-on: ubuntu-latest
services:
# see: https://docs.github.com/en/enterprise-server@3.5/actions/using-containerized-services/creating-postgresql-service-containers
postgres:
image: postgres:14.10
env:
POSTGRES_PASSWORD: odktest
ports:
- 5432:5432
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20.10.0
cache: 'npm'
- run: npm ci --legacy-peer-deps
- run: node lib/bin/create-docker-databases.js
- name: Soak Test
timeout-minutes: 10
run: ./test/e2e/soak/ci
- name: Backend Logs
if: always()
run: "! [[ -f ./backend.log ]] || cat ./backend.log"