Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
R
react-native-fast-image
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
react-native-fast-image
Commits
038e94e6
Commit
038e94e6
authored
Oct 14, 2018
by
Dylan Vann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add caching on CircleCI.
parent
069d71bc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
8 deletions
+20
-8
.circleci/config.yml
.circleci/config.yml
+20
-8
No files found.
.circleci/config.yml
View file @
038e94e6
version
:
2
jobs
:
build
:
docker
:
-
image
:
node:9.2.0
working_directory
:
~/app
steps
:
-
checkout
-
run
:
yarn
-
run
:
yarn test
\ No newline at end of file
build
:
docker
:
-
image
:
'
circleci/node:latest'
steps
:
-
checkout
-
restore_cache
:
keys
:
-
yarn-v1-{{ .Branch }}-{{ checksum "yarn.lock" }}
-
yarn-v1-{{ .Branch }}-
-
yarn-v1-
-
run
:
name
:
install
command
:
yarn install
-
run
:
name
:
test
command
:
yarn run test
-
save_cache
:
paths
:
-
~/.cache/yarn
key
:
yarn-v1-{{ .Branch }}-{{ checksum "package-lock.json" }}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment