Няма описание

123456789101112131415161718192021222324
  1. workflow "Detox CI Tests" {
  2. on = "push"
  3. }
  4. jobs:
  5. tests:
  6. name: "Running tests"
  7. runs-on: "macOS-latest"
  8. steps:
  9. - name: Setup - Install Homebrew
  10. run: /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  11. - name: Setup - Install Node
  12. run: brew install node
  13. - name: Setup - Install React Native CLI
  14. run: npm install -g react-native-cli
  15. - name: Setup - Install NPM Dependencies
  16. run: yarn
  17. - name: Setup - Install CocoaPods CLI
  18. run: sudo gem install cocoapods
  19. - name: Setup - Verify
  20. run: ./bin/setup
  21. - name: Run tests
  22. run: yarn ci:test