Skip to content

ci/cd pipeline SnapshotExemption2 #23

ci/cd pipeline SnapshotExemption2

ci/cd pipeline SnapshotExemption2 #23

Workflow file for this run

name: Test React Native App testing
on:
pull_request:
workflow_dispatch:
push:
branches: [testing]
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 run test -- --coverage --collectCoverageFrom='src/**/*.{js,jsx}' --testPathIgnorePatterns='(_snapshots_)'
working-directory: SmartClothingApp
- name: Success Message
if: success()
run: echo "Regression testing completed successfully!"