Skip to content

Commit 5ff4423

Browse files
committed
Merge branch 'main' into chore/update-rn-version-to-v82
2 parents f8640c4 + 8af36ea commit 5ff4423

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
*.pbxproj -text
22
# specific for windows script files
33
*.bat text eol=crlf
4-
.lockb binary diff=lockb

.github/workflows/lint-typescript.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,15 @@ jobs:
4343
- name: Install npm dependencies (bun)
4444
run: bun install
4545

46-
- name: Run TypeScript (tsc)
46+
- name: Run TypeScript (tsc) in example
47+
working-directory: example
48+
run: |
49+
bun typecheck | reviewdog -name="tsc" -efm="%f(%l,%c): error TS%n: %m" -reporter="github-pr-review" -filter-mode="nofilter" -fail-level=any -tee
50+
env:
51+
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
52+
53+
- name: Run TypeScript (tsc) in react-native-nitro-sqlite
54+
working-directory: package
4755
run: |
4856
bun typecheck | reviewdog -name="tsc" -efm="%f(%l,%c): error TS%n: %m" -reporter="github-pr-review" -filter-mode="nofilter" -fail-level=any -tee
4957
env:
@@ -59,7 +67,7 @@ jobs:
5967
- name: Install npm dependencies (bun)
6068
run: bun install
6169

62-
- name: Run ESLint with auto-fix in example/
70+
- name: Run ESLint with auto-fix in example
6371
working-directory: example
6472
run: bun lint
6573
- name: Run ESLint with auto-fix in react-native-nitro-sqlite

0 commit comments

Comments
 (0)