Skip to content
This repository has been archived by the owner on May 12, 2020. It is now read-only.

Commit

Permalink
[CI] Update to CircleCI 2
Browse files Browse the repository at this point in the history
  • Loading branch information
ide committed Aug 28, 2018
1 parent e3858c4 commit 0e30b88
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
20 changes: 20 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: 2
jobs:
build:
working_directory: ~/react-native-infinite-scroll-view
docker:
- image: circleci/node:10
steps:
- checkout
- restore_cache:
key: v1-node_modules
- run:
name: Install npm packages
command: yarn
- save_cache:
key: v1-node_modules
paths:
- node_modules
- run:
name: Lint
command: yarn lint --max-warnings 0
3 changes: 0 additions & 3 deletions circle.yml

This file was deleted.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
"description": "An infinitely scrolling view that notifies you as the scroll offset approaches the bottom",
"main": "InfiniteScrollView.js",
"scripts": {
"lint": "eslint .",
"test": "eslint ."
"lint": "eslint ."
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 0e30b88

Please sign in to comment.