Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update workflow names and artifact IDs #799

Merged
merged 2 commits into from
Oct 4, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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