Skip to content

testing DH login

testing DH login #765

Workflow file for this run

name: Test
on: [push, pull_request]
env:
INTERNAL_CONTRIBUTOR: ${{ secrets.DOCKERHUB_USERNAME && 'true' }}
jobs:
unit-tests:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- run: npm ci
- run: npm ci
working-directory: ./couch2pg
- run: npm run lint
- run: npm run test
e2e-tests:
name: E2E Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- run: npm ci
- name: Run e2e tests
run: npm run test:e2e