diff --git a/.github/actions/api-docs/action.yml b/.github/actions/api-docs/action.yml index 228f72dd4..12e3e3283 100644 --- a/.github/actions/api-docs/action.yml +++ b/.github/actions/api-docs/action.yml @@ -5,32 +5,3 @@ on: push runs: using: 'docker' image: 'odk-docs.dockerfile' - -jobs: - standard-tests: - # 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.6 - 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@v3 - - name: Use Node.js 18 - uses: actions/setup-node@v3 - with: - node-version: 18.17.0 - cache: 'npm' - - run: npm ci --legacy-peer-deps - - run: node lib/bin/create-docker-databases.js - - run: make test-full diff --git a/.github/workflows/api-docs.yml b/.github/workflows/api-docs.yml index 81e31962e..7841239c7 100644 --- a/.github/workflows/api-docs.yml +++ b/.github/workflows/api-docs.yml @@ -3,7 +3,7 @@ on: [push] jobs: build_api_docs: runs-on: ubuntu-latest - name: A job to say hello + name: Build API Docs steps: - name: Checkout uses: actions/checkout@v4