Skip to content

Fixes for the Overall Adherence Percentage #133

Fixes for the Overall Adherence Percentage

Fixes for the Overall Adherence Percentage #133

Workflow file for this run

name: Tests
env:
DHIS2_PROXY: "${{vars.DHIS2_PROXY}}"
on:
pull_request:
types:
- synchronize
- opened
jobs:
tests:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.18.0
cache: yarn
- name: Install JS dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test
env:
BROWSER: none
DHIS2_PROXY: ${{ vars.DHIS2_PROXY }}
CYPRESS_dhis2Username: ${{ secrets.DHIS2_USERNAME }}
CYPRESS_dhis2Password: ${{ secrets.DHIS2_PASSWORD }}
CYPRESS_dhis2BaseUrl: "http://localhost:8080"