Correct browser name in e2e workflow

This commit is contained in:
Tilman Vatteroth 2020-07-18 22:37:14 +02:00 committed by mrdrogdrog
parent 6ef505e514
commit 29f76fec67

View file

@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
browser: ['e2e:chrome', 'e2e:firefox']
browser: ['chrome', 'firefox']
name: ${{ matrix.browser }}
steps:
- name: Checkout repository
@ -30,5 +30,5 @@ jobs:
run: sudo apt-get install libgtk2.0-0 libgtk-3-0 libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth xvfb
- name: Install dependencies
run: yarn install
- name: Run e2e in chrome
run: yarn ${{ matrix.browser }}
- name: Run e2e in ${{ matrix.browser }}
run: yarn e2e:${{ matrix.browser }}