Skip to content

fixed dropdown values bug #5486

fixed dropdown values bug

fixed dropdown values bug #5486

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