UNPKG

sqrap

Version:

sqrap is a configurable web scraper that can map information from a website using a json schema.

26 lines (19 loc) 459 B
version: 2 jobs: build: docker: - image: circleci/node:10.12 working_directory: ~/repo steps: - checkout - restore_cache: keys: - v1-dependencies-{{ checksum "package.json" }} - v1-dependencies- - run: npm i - save_cache: paths: - node_modules key: v1-dependencies-{{ checksum "package.json" }} - run: npm run lint - run: npm test