|
@@ -0,0 +1,20 @@
|
|
1
|
+name: 'Detox CI Tests'
|
|
2
|
+on: [push]
|
|
3
|
+
|
|
4
|
+jobs:
|
|
5
|
+ tests:
|
|
6
|
+ name: 'Running tests'
|
|
7
|
+ runs-on: 'macOS-latest'
|
|
8
|
+ steps:
|
|
9
|
+ - uses: actions/checkout@master
|
|
10
|
+ - uses: actions/setup-node@master
|
|
11
|
+ with:
|
|
12
|
+ node-version: 12.6
|
|
13
|
+ - name: Setup - Install Yarn
|
|
14
|
+ run: YARN_GPG=NO curl -o- -L https://yarnpkg.com/install.sh | bash
|
|
15
|
+ - name: Setup - Install NPM Dependencies
|
|
16
|
+ run: yarn
|
|
17
|
+ - name: Setup - Install CocoaPods CLI
|
|
18
|
+ run: sudo gem install cocoapods
|
|
19
|
+ - name: Run tests
|
|
20
|
+ run: yarn ci
|