Skip to content

Merge pull request #4198 from OneCommunityGlobal/Akshay-fix-keyword-l… #5482

Merge pull request #4198 from OneCommunityGlobal/Akshay-fix-keyword-l…

Merge pull request #4198 from OneCommunityGlobal/Akshay-fix-keyword-l… #5482

Workflow file for this run

name: Test React App
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js & cache Yarn
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test
- name: Upload test results
if: failure()
uses: actions/upload-artifact@v4
with:
name: test-results
path: test-results # Adjust the path to your test results if necessary