Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.87 KB | None | 0 0
  1. version: 2
  2. jobs:
  3.   node:
  4.     docker:
  5.       - image: circleci/node:10.16.0-jessie
  6.     working_directory: ~/mobile
  7.     steps:
  8.      - checkout
  9.  
  10.       - run:
  11.           name: Install dependencies
  12.           command: yarn install
  13.  
  14.       # TODO: Habilitar novamente quando resolver os problemas específicos do flow
  15.       #   - run:
  16.       #       name: Run Flow
  17.       #       command: yarn flow:check
  18.  
  19.       - run:
  20.           name: Run specs
  21.           command: yarn test:coverage
  22.  
  23.       - run:
  24.           name: Upload coverage reports
  25.           command: yarn codecov
  26.  
  27.       - persist_to_workspace:
  28.           root: ~/mobile
  29.           paths:
  30.            - node_modules
  31.  
  32.   build_android_staging:
  33.     working_directory: ~/mobile
  34.     docker:
  35.       - image: circleci/android:api-28-node8-alpha
  36.     steps:
  37.      - checkout
  38.  
  39.       - attach_workspace:
  40.           at: ~/mobile
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement