feature: add error handling for transfer and stakes #711
Workflow file for this run
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: E2E onboarding tests | |
on: | |
push: | |
branches: [ master, develop ] | |
pull_request: | |
branches: [ master, develop ] | |
jobs: | |
e2e-onboarding-tests: | |
runs-on: ubuntu-latest | |
container: | |
image: node:16 | |
strategy: | |
fail-fast: false | |
matrix: | |
# Add Firefox after fixing CI errors | |
browser: [ 'chrome' ] | |
node-version: [ 16.x ] | |
services: | |
selenium: | |
image: selenium/standalone-${{ matrix.browser }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache npm dependencies | |
id: cache-npm | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-node-modules | |
with: | |
# npm cache files are stored in `~/.npm` on Linux/macOS | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: Install dependencies | |
run: | | |
npm install | |
- name: Run E2E onboarding tests on ${{ matrix.browser }} | |
run: npm run test:e2e:${{ matrix.browser }}:headless:onboarding | |
env: | |
SELENIUM_HOST: selenium | |
SELENIUM_PORT: 4444 |