Skip to content

Commit

Permalink
updated with latest TCM Repo and applied typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
ozanmanav committed Dec 6, 2020
1 parent 63afdd6 commit 61e3e28
Show file tree
Hide file tree
Showing 256 changed files with 22,804 additions and 10,041 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: documentation

on:
pull_request:
branches: [master]
push:
branches: [master]

jobs:
checks:
if: github.event_name != 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Test Build
run: |
cd documentation
yarn install --frozen-lockfile
npm run build
gh-release:
if: github.event_name != 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Add key to allow access to repository
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
run: |
mkdir -p ~/.ssh
ssh-keyscan github.com >> ~/.ssh/known_hosts
echo "${{ secrets.GH_PAGES_DEPLOY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
cat <<EOT >> ~/.ssh/config
Host github.com
HostName github.com
IdentityFile ~/.ssh/id_rsa
EOT
- name: Release to GitHub Pages
env:
USE_SSH: true
GIT_USER: git
DEPLOYMENT_BRANCH: gh-pages
run: |
git config --global user.email "[email protected]"
git config --global user.name "gh-actions"
cd documentation
yarn install --frozen-lockfile
yarn deploy
50 changes: 8 additions & 42 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,6 @@
#
.DS_Store

# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate

# Android/IntelliJ
#
build/
Expand All @@ -31,29 +12,14 @@ local.properties

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

# BUCK
buck-out/
\.buckd/
*.keystore
!debug.keystore

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/

*/fastlane/report.xml
*/fastlane/Preview.html
*/fastlane/screenshots

# Bundle artifact
*.jsbundle

# CocoaPods
/ios/Pods/
# Ignore specific files copying by RN CLI
template/.gitignore
template/.gitattributes
template/.eslintrc.js
template/.flowconfig
template/.buckconfig
template/.prettierrc.js
template/.watchmanconfig
6 changes: 6 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.DS_Store
templates/node_modules
templates/ios/Pods
documentation
.idea
.github
29 changes: 0 additions & 29 deletions App/App.tsx

This file was deleted.

Binary file removed App/Assets/Images/TOM-Legend.png
Binary file not shown.
Binary file removed App/Assets/Images/TOM.png
Binary file not shown.
Binary file removed App/Assets/Images/ts.png
Binary file not shown.
1 change: 0 additions & 1 deletion App/Assets/README.md

This file was deleted.

1 change: 0 additions & 1 deletion App/Components/README.md

This file was deleted.

25 changes: 0 additions & 25 deletions App/Config/README.md

This file was deleted.

3 changes: 0 additions & 3 deletions App/Config/index.production.ts

This file was deleted.

3 changes: 0 additions & 3 deletions App/Config/index.staging.ts

This file was deleted.

3 changes: 0 additions & 3 deletions App/Config/index.ts

This file was deleted.

85 changes: 0 additions & 85 deletions App/Containers/Example/ExampleScreen.tsx

This file was deleted.

53 changes: 0 additions & 53 deletions App/Containers/Example/ExampleScreenStyle.ts

This file was deleted.

1 change: 0 additions & 1 deletion App/Containers/README.md

This file was deleted.

42 changes: 0 additions & 42 deletions App/Containers/Root/RootScreen.tsx

This file was deleted.

8 changes: 0 additions & 8 deletions App/Containers/Root/RootScreenStyle.ts

This file was deleted.

Loading

0 comments on commit 61e3e28

Please sign in to comment.