Merge pull request #64 from periodo/dependabot/npm_and_yarn/adobe/css… #191
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: end-to-end tests | |
on: [ push, workflow_dispatch ] | |
jobs: | |
run-tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest ] | |
browser: [ firefox ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
- uses: DevExpress/testcafe-action@v0.0.6 | |
with: | |
args: >- | |
${{ matrix.browser }} | |
*/index.js | |
--hostname localhost | |
--retry-test-pages | |
--skip-js-errors | |
--selector-timeout 60000 | |
env: | |
CI: true | |
HOST: https://client.staging.perio.do | |
ORCID_USER: ${{ secrets.ORCID_USER }} | |
ORCID_PASSWORD: ${{ secrets.ORCID_PASSWORD }} |