您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

22 行
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