Cypress Tests #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cypress Tests | |
on: | |
schedule: | |
- cron: '0 0 * * 0' # Weekly on Sunday midnight | |
jobs: | |
cypress_tests: | |
runs-on: ubuntu-latest | |
env: | |
CYPRESS_ADMIN_USERNAME: ct-admin | |
CYPRESS_ADMIN_PASSWORD: ct-admin | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Setup DDEV | |
uses: ddev/github-action-setup-ddev@v1 | |
with: | |
autostart: false | |
- name: Set the platform.sh token | |
run: | | |
ddev config global --web-environment-add="PLATFORMSH_CLI_TOKEN=${{ secrets.PLATFORMSH_CLI_TOKEN }}" | |
ddev start | |
- name: Install dependencies | |
run: | | |
ddev composer install | |
ddev pull platform -y | |
cd web/themes/custom/contribtracker | |
npm ci --prefer-offline --no-audit | |
- name: Change admin password for Cypress | |
run: ddev drush upwd "$CYPRESS_ADMIN_USERNAME" "$CYPRESS_ADMIN_PASSWORD" | |
- name: Run expensive tests (weekly) | |
run: ddev cypress-run --env grepTags=expensive | |
- name: Save Cypress recordings | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: cypress-recordings | |
path: | | |
web/themes/custom/contribtracker/cypress/screenshots | |
web/themes/custom/contribtracker/cypress/videos | |
retention-days: 3 |