added parallel build support

This commit is contained in:
Christian Klemm
2019-11-20 21:18:19 +01:00
committed by GitHub
parent 292bc3c4e5
commit 3fedd452a5

View File

@@ -43,9 +43,16 @@ jobs:
uses: coverallsapp/github-action@v1.0.1 uses: coverallsapp/github-action@v1.0.1
with: with:
github-token: ${{ secrets.GITHUB_TOKEN }} github-token: ${{ secrets.GITHUB_TOKEN }}
parallel: true
- name: Run E2E Tests - name: Run E2E Tests
run: yarn e2e run: yarn e2e
env: env:
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }} PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
CYPRESS_CACHE_FOLDER: .cache/Cypress CYPRESS_CACHE_FOLDER: .cache/Cypress
- name: Post Upload Test Results
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true