Skip to content

Commit 89cce08

Browse files
committed
Removed broken eslint annotations
Update e2e-ios.yml
1 parent cad4c42 commit 89cce08

File tree

4 files changed

+374
-620
lines changed

4 files changed

+374
-620
lines changed

.github/workflows/e2e-ios.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
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
@@ -58,8 +58,7 @@ jobs:
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

.github/workflows/lint-check.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,3 @@ jobs:
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

src/utils/result.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)