説明なし

detox.yml 873B

1234567891011121314151617181920212223242526272829
  1. name: 'Detox CI Tests'
  2. on: [push]
  3. jobs:
  4. tests:
  5. name: 'Running tests'
  6. runs-on: 'macOS-latest'
  7. steps:
  8. - uses: actions/checkout@master
  9. - uses: actions/setup-node@master
  10. with:
  11. node-version: 12.6
  12. - name: Setup - Install Homebrew
  13. run: /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  14. - name: Setup - Install Yarn
  15. run: brew install yarn --ignore-dependencies
  16. - name: Setup - Install NPM Dependencies
  17. run: yarn
  18. - name: Setup - Install CocoaPods CLI
  19. run: sudo gem install cocoapods
  20. - name: Setup - Install Detox and deps
  21. run: |
  22. brew tap wix/brew
  23. brew install applesimutils
  24. yarn global add react-native-cli
  25. yarn global add detox-cli
  26. - name: Run tests
  27. run: yarn ci