From ea7d316015dcbf0f86ed533dbae872a2d8748da3 Mon Sep 17 00:00:00 2001 From: Arvin Singla Date: Wed, 21 Feb 2024 11:37:26 -0500 Subject: [PATCH] Changing mariadb to use lts instead of latest. --- .github/workflows/e2e-test.yml | 34 ++++++++-------- .gitignore | 1 + ci/playwright-report/index.html | 69 --------------------------------- docker-compose.yaml | 2 +- 4 files changed, 19 insertions(+), 87 deletions(-) delete mode 100644 ci/playwright-report/index.html diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index a9f140017..bdfcedeb1 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -26,20 +26,20 @@ jobs: host: localhost port: 3306 timeout: 60 - # - name: Install dependencies - # run: npm ci - # working-directory: ci - # - name: Install Playwright Browsers - # run: npx playwright install --with-deps - # working-directory: ci - # - name: Run Playwright tests - # run: npx playwright test - # working-directory: ci - # - uses: actions/upload-artifact@v3 - # if: always() - # with: - # name: playwright-report - # path: playwright-report/ - # retention-days: 30 - - name: Setup tmate session - uses: mxschmitt/action-tmate@v3 + - name: Install dependencies + run: npm ci + working-directory: ci + - name: Install Playwright Browsers + run: npx playwright install --with-deps + working-directory: ci + - name: Run Playwright tests + run: npx playwright test + working-directory: ci + - uses: actions/upload-artifact@v3 + if: always() + with: + name: playwright-report + path: playwright-report/ + retention-days: 30 + # - name: Setup tmate session + # uses: mxschmitt/action-tmate@v3 diff --git a/.gitignore b/.gitignore index 65a80c18b..343507d76 100644 --- a/.gitignore +++ b/.gitignore @@ -14,4 +14,5 @@ formulize-docs/_site .DS_Store libraries/php-saml/settings.php ci/test-results +ci/playwright-report ci/node_modules diff --git a/ci/playwright-report/index.html b/ci/playwright-report/index.html deleted file mode 100644 index 7ad985620..000000000 --- a/ci/playwright-report/index.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - Playwright Test Report - - - - -
- - - - \ No newline at end of file diff --git a/docker-compose.yaml b/docker-compose.yaml index 938c50022..4b1388e64 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -15,7 +15,7 @@ services: links: - mariadb mariadb: - image: "mariadb" + image: "mariadb:lts" restart: 'no' ports: - 3306:3306