Skip to content

signup flow - trouble with modal scroll #35

signup flow - trouble with modal scroll

signup flow - trouble with modal scroll #35

Workflow file for this run

name: Test React Native App testing
on:
pull_request:
workflow_dispatch:
push:
branches: [testing, testing-e2e-v2]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
working-directory: SmartClothingApp
- name: Run Tests
run: npm test -- -u
working-directory: SmartClothingApp
- name: Success Message
if: success()
run: echo "Regression testing completed successfully!"