Skip to content

Commit

Permalink
Merge pull request #587 from nextcloud/fix/cypress-job-names
Browse files Browse the repository at this point in the history
  • Loading branch information
skjnldsv committed Sep 2, 2020
2 parents 4280f99 + 5335f2c commit 2720c44
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
fail-fast: false
matrix:
# run 4 copies of the current job in parallel
containers: [1, 2, 3, 4]
node-versions: ['12.x']
containers: [1, 2, 3, 4, 5]
node-version: ['12']
php-versions: ['7.4']

name: Runner ${{ matrix.containers }}
Expand All @@ -43,10 +43,10 @@ jobs:
with:
path: apps/${{ env.APP_NAME }}

- name: Set up node ${{ matrix.node-versions }}
- name: Set up node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-versions: ${{ matrix.node-versions }}
node-version: ${{ matrix.node-version }}

- name: Install dependencies & build app
working-directory: apps/${{ env.APP_NAME }}
Expand Down Expand Up @@ -82,5 +82,8 @@ jobs:
# cypress env
working-directory: apps/${{ env.APP_NAME }}
ci-build-id: ${{ github.sha }}-${{ github.run_number }}
tag: ${{ github.event_name }}
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
# https://github.com/cypress-io/github-action/issues/124
COMMIT_INFO_MESSAGE: ${{ github.event.pull_request.title }}

0 comments on commit 2720c44

Please sign in to comment.