Skip to content

Commit

Permalink
Merge pull request #5 from ConnectedHomes/version5.0update
Browse files Browse the repository at this point in the history
Version5.0update
  • Loading branch information
Karthikeyan Ganesan authored Jul 3, 2020
2 parents d189837 + fa13b5d commit df79be1
Show file tree
Hide file tree
Showing 62 changed files with 6,057 additions and 9,940 deletions.
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,11 @@
.DS_Store
build/


# node.js
#
node_modules/
npm-debug.log
yarn-error.log


# Xcode
#
Expand All @@ -29,7 +27,6 @@ DerivedData
*.ipa
*.xcuserstate
project.xcworkspace


# Android/IntelliJ
#
Expand All @@ -39,7 +36,6 @@ gradle/
local.properties
*.iml


# BUCK
buck-out/
\.buckd/
Expand Down
39 changes: 39 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
env:
- NODE_ENV='test'
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
matrix:
include:
- language: objective-c
os: osx
xcode_sdk: iphonesimulator12.2
osx_image: xcode10.2
sudo: true
before_install:
- brew install node@10
- cd examples && make install # install node modules to get podfiles
install:
- cd ios && pod install && cd ..
script:
- make test-ios
- language: android
android:
components:
- tools
- platform-tools
- build-tools-29.0.2
- android-29
sudo: true
before_install:
- nvm install --lts
install: true
script:
- cd examples && make test-android
- language: node_js
node_js: lts/*
sudo: false
install:
- cd examples && npm ci
script: react-native bundle --entry-file index.js --bundle-output main.jsbundle
Loading

0 comments on commit df79be1

Please sign in to comment.