You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
383 B

  1. name: mobile-test
  2. on:
  3. push:
  4. branches:
  5. - main
  6. paths:
  7. - "mobile/**"
  8. pull_request:
  9. paths:
  10. - "mobile/**"
  11. jobs:
  12. test-mobile:
  13. runs-on: ubuntu-18.04
  14. steps:
  15. - uses: actions/checkout@v2
  16. - uses: actions/setup-node@v2
  17. with:
  18. node-version: "14"
  19. - run: |
  20. cd mobile
  21. yarn install
  22. yarn test