mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-12-26 14:12:29 +00:00
Correct browser name in e2e workflow
This commit is contained in:
parent
6ef505e514
commit
29f76fec67
1 changed files with 3 additions and 3 deletions
6
.github/workflows/e2e.yml
vendored
6
.github/workflows/e2e.yml
vendored
|
@ -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 }}
|
||||||
|
|
Loading…
Reference in a new issue