mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-12-02 10:33:57 -05:00
18e165d1ab
* Update dependency cypress to v4.11.0 Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Philip Molares <philip.molares@udo.edu> Co-authored-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
21 lines
402 B
YAML
21 lines
402 B
YAML
name: e2e
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
end2end:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
browser: ['chrome', 'firefox']
|
|
name: e2e:${{ matrix.browser }}
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: cypress-io/github-action@v2
|
|
with:
|
|
browser: ${{ matrix.browser }}
|
|
start: npm start
|