-
Notifications
You must be signed in to change notification settings - Fork 2
44 lines (39 loc) · 1.45 KB
/
cypress-integration-tests-hotseat.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Action that Runs Cypress Tests
name: Cypress Tests - Hotseat
# Controls when the action will run.
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
cypress-run:
# The type of runner that the job will run on
runs-on: ubuntu-22.04
strategy:
fail-fast: false # suggested by Cypress
matrix:
containers: [1, 2, 3, 4, 5]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v4
# Setup Node.js 20
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Cypress run
uses: cypress-io/github-action@v6
with:
project: ./deploy/post_deploy_testing
record: true
browser: chrome
parallel: true
config: baseUrl=http://fourfront-hotseat-1650461284.us-east-1.elb.amazonaws.com/
env:
# pass GitHub token to allow accurately detecting a build vs a re-run build
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_KEY }}
CYPRESS_Auth0Client: ${{ secrets.Auth0Client }}
CYPRESS_Auth0Secret: ${{ secrets.Auth0Secret }}