Run React Tests (#508)

Co-authored-by: Cesar N <ces.nietor@gmail.com>
This commit is contained in:
Daniel Valdivia
2020-12-14 12:10:37 -08:00
committed by GitHub
parent 77e74917ca
commit 06f259f190
5 changed files with 196 additions and 124 deletions

15
.github/workflows/react.yml vendored Normal file
View File

@@ -0,0 +1,15 @@
name: "React Tests"
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
working-directory: ./portal-ui
run: yarn
- name: Run tests
working-directory: ./portal-ui
run: yarn test