Comprehensive technical guide for developers and implementers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| publish-to-testflight: | |
| needs: [build-for-IOS] | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: 12.x | |
| - uses: actions/setup-java@v1.4.3 | |
| with: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| build-for-IOS: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: 12.x | |
| - uses: actions/setup-java@v1.4.3 | |
| with: | |
| java-version: '9.0.4' # The JDK version to make available on the path. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Push-to-Playstore: | |
| needs: [Build-for-android] | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: 12.x | |
| - uses: actions/setup-java@v1.4.3 | |
| with: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| jobs: | |
| Build-for-android: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: 12.x | |
| - uses: actions/setup-java@v1.4.3 | |
| with: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Expo CI CD | |
| on: | |
| push : | |
| branches : [release] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Expo CI CD | |
| on: | |
| push : | |
| branches : [release] | |
| jobs: | |
| Build-for-android: | |
| runs-on: macos-latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const request = require('request') | |
| const geoCode = require('./utils/geocode') | |
| const forecast = require('./utils/forecast') | |
| const address = process.argv[2] | |
| if(!address){ | |
| console.log('Please Provide Address') | |
| }else{ | |
| geoCode(address , (error , data)=>{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fs = require('fs') | |
| const book = { | |
| title : 'Ego is the Enemy', | |
| author : 'Rayan Holiday' | |
| } | |
| const bookJSON = JSON.stringify(book) | |
| fs.writeFileSync('1.json' , bookJSON) |
NewerOlder