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 runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
browser: ['e2e:chrome', 'e2e:firefox'] browser: ['chrome', 'firefox']
name: ${{ matrix.browser }} name: ${{ matrix.browser }}
steps: steps:
- name: Checkout repository - 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 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 - name: Install dependencies
run: yarn install run: yarn install
- name: Run e2e in chrome - name: Run e2e in ${{ matrix.browser }}
run: yarn ${{ matrix.browser }} run: yarn e2e:${{ matrix.browser }}