Skip to content

Merge pull request #3007 from OneCommunityGlobal/weekly-volunteer-sum… #200

Merge pull request #3007 from OneCommunityGlobal/weekly-volunteer-sum…

Merge pull request #3007 from OneCommunityGlobal/weekly-volunteer-sum… #200

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
uses: actions/setup-node@v3
with:
node-version: '14'
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test
- name: Upload test results
if: failure()
uses: actions/upload-artifact@v3
with:
name: test-results
path: test-results # Adjust the path to your test results if necessary