chore(Github Actions): Added detox.yml workflow Github Action (#843)

* Added detox.yml workflow Github Action

* Fix yml format

* Update detox.yml

* Update detox.yml

* Update detox.yml

* Update detox.yml

* Update detox.yml

* Update detox.yml

* Update detox.yml

* ffs

* okay

* pay attention

* try this?

* Update detox.yml

* Wait really?

* Update detox.yml

* Better yarn install
This commit is contained in:
Jamon Holmgren 2019-09-04 13:45:27 +02:00 committed by Thibault Malbranche
parent 8a9d5ff4fb
commit f5c701a062
1 changed files with 20 additions and 0 deletions

20
.github/workflows/detox.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: 'Detox CI Tests'
on: [push]
jobs:
tests:
name: 'Running tests'
runs-on: 'macOS-latest'
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: 12.6
- name: Setup - Install Yarn
run: YARN_GPG=NO curl -o- -L https://yarnpkg.com/install.sh | bash
- name: Setup - Install NPM Dependencies
run: yarn
- name: Setup - Install CocoaPods CLI
run: sudo gem install cocoapods
- name: Run tests
run: yarn ci