Skip to content

Commit

Permalink
Update workflow names and artifact IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
oo-bldrs committed Oct 4, 2023
1 parent 0b2192d commit 891a21e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/end-to-end-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ on:
workflow_dispatch:

jobs:
install-cypress:
install-cypress-webifc:
runs-on: ubuntu-20.04
steps:
- name: checkout
id: checkout
uses: actions/checkout@v3

- name: Install Cypress
id: install-cypress
- name: Install Cypress WebIfc
id: install-cypress-webifc
uses: cypress-io/github-action@v6
with:
runTests: false
Expand All @@ -30,13 +30,13 @@ jobs:
id: build-artifacts
uses: actions/upload-artifact@v3
with:
name: build
name: build-conway-${{ github.sha }}
if-no-files-found: error
path: docs/

run-cypress-on-linux:
run-cypress-on-linux-webifc:
runs-on: ubuntu-20.04
needs: install-cypress
needs: install-cypress-webifc
steps:
- name: checkout
id: checkout
Expand All @@ -46,7 +46,7 @@ jobs:
id: restore-artifacts
uses: actions/download-artifact@v3
with:
name: build
name: build-conway-${{ github.sha }}
path: docs/

- name: E2E Tests on Google Chrome
Expand Down

0 comments on commit 891a21e

Please sign in to comment.