This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
accessibility changes and wordpress integration #902
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run jest tests | |
on: | |
pull_request: | |
paths: | |
- 'react-frontend/**' | |
- 'react-frontend/package.json' | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
env: | |
working-directory: ./react-frontend | |
steps: | |
- uses: actions/checkout@v1 | |
- name: build tests | |
run: npm install | |
working-directory: ${{env.working-directory}} | |
- name: Run tests | |
run: npm run test | |
working-directory: ${{env.working-directory}} |