release 7.13.0 #118
This file contains hidden or 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: rAPId Integration Tests | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| jobs: | |
| run-ui-test: | |
| runs-on: self-hosted | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Install packages | |
| run: | | |
| cd ui | |
| npm install | |
| - name: Install playwright browsers | |
| run: | | |
| cd ui | |
| npx playwright install-deps | |
| npm install @playwright/test -D | |
| npx playwright install | |
| - name: Run playwright tests | |
| run: | | |
| # Export AWS credentials to env for e2e tests | |
| eval "$(aws configure export-credentials --format env)" | |
| make ui/test-e2e | |
| env: | |
| E2E_DOMAIN_NAME: ${{ secrets.E2E_DOMAIN_NAME }} | |
| E2E_RESOURCE_PREFIX: ${{ secrets.E2E_RESOURCE_PREFIX }} | |
| AWS_REGION: ${{ secrets.AWS_REGION }} |