File tree Expand file tree Collapse file tree 4 files changed +374
-620
lines changed
Expand file tree Collapse file tree 4 files changed +374
-620
lines changed Original file line number Diff line number Diff line change 99 e2e-test :
1010 name : E2E iOS test
1111 runs-on : macOS-latest
12- timeout-minutes : 30
12+ timeout-minutes : 35
1313
1414 steps :
1515 - name : Check out Git repository
5858 path : example/ios/Pods
5959 key : pods-${{ hashFiles('**/Podfile.lock') }}
6060
61- - name : Update pods and rn-nodify
62- if : steps.podcache.outputs.cache-hit != 'true'
61+ - name : Install pods and rn-nodify
6362 working-directory : example
6463 run : |
6564 gem update cocoapods xcodeproj
Original file line number Diff line number Diff line change 2424
2525 - name : Lint check
2626 run : yarn lint:check
27-
28- - name : Run linters
29- uses : tinovyatkin/action-eslint@v1
30- with :
31- repo-token : ${{secrets.GITHUB_TOKEN}}
32- check-name : eslint
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ export const ok = <T>(value: T): Ok<T> => new Ok(value);
3737/**
3838 * Construct a new Err result value.
3939 */
40- export const err = < T > ( error : Error | string ) : Err < T > => {
40+ export const err = < T > ( error : Error | string | any ) : Err < T > => {
4141 if ( typeof error === 'string' ) {
4242 return new Err ( new Error ( error ) ) ;
4343 }
You can’t perform that action at this time.
0 commit comments