config.yml 467 Bytes
Newer Older
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
1 2 3 4
version: 2
jobs:
  build:
    docker:
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
5
      - image: circleci/node:8.11.4
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
6 7 8 9 10 11
    steps:
      - checkout
      - run: npm install
      - run: npm run build
  test:
    docker:
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
12
      - image: circleci/node:8.11.4
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
13 14 15 16
    steps:
      - checkout
      - run: sh ./tests/fix_puppeteer.sh
      - run: npm install
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
17 18 19
      - run: 
          command : npm run test:all
          no_output_timeout : 30m
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
20 21 22 23 24 25
workflows:
  version: 2
  build_and_test:
    jobs:
      - build
      - test