Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…into works
  • Loading branch information
Lemeri123 committed Jan 23, 2025
2 parents c903786 + fdbc4ba commit 1715ed9
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/publish-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ env:

jobs:
build-and-push-test-image-backend:
if: ${{ github.repository == 'I-TECH-UW/OpenELIS-Global-2' }}
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down Expand Up @@ -63,6 +64,7 @@ jobs:
build-args: SKIP_SPOTLESS=true

build-and-push-test-image-frontend:
if: ${{ github.repository == 'I-TECH-UW/OpenELIS-Global-2' }}
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down Expand Up @@ -105,6 +107,7 @@ jobs:
cache-to: type=registry,ref=${{ env.DOCKER_TEST_NAME }}-frontend:buildcache,mode=max

build-and-push-test-image-proxy:
if: ${{ github.repository == 'I-TECH-UW/OpenELIS-Global-2' }}
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down Expand Up @@ -146,6 +149,7 @@ jobs:
cache-to: type=registry,ref=${{ env.DOCKER_TEST_NAME }}-proxy:buildcache,mode=max

build-and-push-test-image-fhir:
if: ${{ github.repository == 'I-TECH-UW/OpenELIS-Global-2' }}
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down Expand Up @@ -303,6 +307,7 @@ jobs:
cache-to: type=registry,ref=${{ env.DOCKER_TEST_NAME }}-frontend:buildcache,mode=max

build-and-push-image-proxy:
if: ${{ github.repository == 'I-TECH-UW/OpenELIS-Global-2' }}
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down Expand Up @@ -344,6 +349,7 @@ jobs:
cache-to: type=registry,ref=${{ env.DOCKER_TEST_NAME }}-proxy:buildcache,mode=max

build-and-push-image-fhir:
if: ${{ github.repository == 'I-TECH-UW/OpenELIS-Global-2' }}
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish-dev-backend-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ env:

jobs:
build-and-push-image-backend-dev:
if: ${{ github.repository == 'I-TECH-UW/OpenELIS-Global-2' }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -83,6 +84,7 @@ jobs:
retention-days: 1

merge-backend-dev-platform-images:
if: ${{ github.repository == 'I-TECH-UW/OpenELIS-Global-2' }}
runs-on: ubuntu-latest
needs:
- build-and-push-image-backend-dev
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish-dev-frontend-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ env:

jobs:
build-and-push-image-frontend-dev:
if: ${{ github.repository == 'I-TECH-UW/OpenELIS-Global-2' }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -85,6 +86,7 @@ jobs:
retention-days: 1

merge-frontend-dev-platform-images:
if: ${{ github.repository == 'I-TECH-UW/OpenELIS-Global-2' }}
runs-on: ubuntu-latest
needs:
- build-and-push-image-frontend-dev
Expand Down
1 change: 1 addition & 0 deletions frontend/cypress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ module.exports = defineConfig({
defaultCommandTimeout: 8000,
viewportWidth: 1200,
viewportHeight: 700,
video: false,
watchForFileChanges: false,
e2e: {
setupNodeEvents(on, config) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -271,9 +271,6 @@ function ConfigMenuDisplay(props) {
{rows.map((row) => (
<TableRow
key={row.id}
onClick={() => {
setSelectedRowId(row.id);
}}
>
{row.cells.map((cell) =>
renderCell(cell, row),
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,6 @@ vapid.public.key=BJDIyXHWK_o9fYNwD3fUie2Ed04-yx5fxz9-GUT1c0QhfdDiGMvVbJwvB_On3Xa
vapid.private.key=FVONpka44MuWq6U8l3X4HY1hAfWM1v1IQB698gsS0KQ


# org.openelisglobal.program.autocreate:true


3 changes: 3 additions & 0 deletions volume/properties/common.properties
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,6 @@ org.openelisglobal.paging.patients.pageSize=99
org.openelisglobal.paging.results.pageSize=99
org.openelisglobal.paging.validation.pageSize=99
org.openelisglobal.paging.displaylist.pageSize=99

#AUto create Programmes from Questionare Resources under programs directory
org.openelisglobal.program.autocreate = true

0 comments on commit 1715ed9

Please sign in to comment.