Skip to content

Test to separate applitools tests from other e2e tests #3731

Test to separate applitools tests from other e2e tests

Test to separate applitools tests from other e2e tests #3731

Workflow file for this run

name: Run e2e tests
on:
pull_request:
branches:
- master
env:
# Token can be found in Applitools project settings
APPLITOOLS_API_KEY: ${{ secrets.APPLITOOLS_API_KEY }}
APPLITOOLS_BATCH_ID: ${{github.event.pull_request.head.sha}}
APPLITOOLS_DONT_CLOSE_BATCHES: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '16.x'
- name: Install latest dependencies
run: yarn upgrade
working-directory: aries-site
- name: Log Git Repository
run: echo "$GITHUB_REPOSITORY"
- name: Create production build
run: yarn build
working-directory: aries-site
test-e2e:
runs-on: ubuntu-latest
needs: build
steps:
- name: Run e2e tests on Chrome
run: yarn test:ci
working-directory: aries-site
test-applitools:
runs-on: ubuntu-latest
needs: build
steps:
- name: Run Applitools tests on Chrome
if: ${{ github.event.pull_request.head.repo.full_name == 'grommet/hpe-design-system' }}
run: yarn test:applitools
working-directory: aries-site
batch-completion-notification:
needs: test-applitools
if: ${{ github.event.pull_request.head.repo.full_name == 'grommet/hpe-design-system' }}
runs-on: ubuntu-latest
steps:
- name: Update Applitools batch status
uses: wei/curl@v1.1.1
with:
args: -d "" -X POST https://eyesapi.applitools.com/api/externals/github/servers/github.com/commit/${{ env.APPLITOOLS_BATCH_ID }}/complete?apiKey=${{ secrets.APPLITOOLS_API_KEY }}