mirror of
https://github.com/Unleash/unleash.git
synced 2024-10-28 19:06:12 +01:00
15726cc8ac
![Outdated as of 2020](https://github.com/Unleash/unleash/assets/177402/689a1bcc-441d-4b87-88a6-125e68a17f26) This has been on our TODO list for a long time. We're moving to latest released at the time of commit (v4.2.2)
30 lines
1017 B
YAML
30 lines
1017 B
YAML
name: e2e:frontend
|
|
on: [deployment_status]
|
|
jobs:
|
|
e2e:
|
|
if: github.event_name == 'deployment_status' && github.event.deployment_status.state == 'success' && contains(github.event.deployment_status.target_url, 'unleash-monorepo-frontend')
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
test:
|
|
- feature/feature.spec.ts
|
|
- groups/groups.spec.ts
|
|
- projects/access.spec.ts
|
|
- segments/segments.spec.ts
|
|
steps:
|
|
- name: Dump GitHub context
|
|
env:
|
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
run: |
|
|
echo "$GITHUB_CONTEXT"
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Run Cypress
|
|
uses: cypress-io/github-action@v6
|
|
with:
|
|
working-directory: frontend
|
|
env: AUTH_USER=admin,AUTH_PASSWORD=unleash4all
|
|
config: baseUrl=${{ github.event.deployment_status.target_url }}
|
|
spec: cypress/integration/${{ matrix.test }}
|
|
install-command: yarn --immutable
|