You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/validate-js.yml
+31-34
Original file line number
Diff line number
Diff line change
@@ -6,27 +6,29 @@ on:
6
6
- 0.x
7
7
paths:
8
8
- '.github/workflows/validate-js.yml'
9
-
- 'src/**'
10
-
- '*.json'
11
-
- '*.js'
12
-
- '*.lock'
13
-
- 'example/src/**'
14
-
- 'example/*.json'
15
-
- 'example/*.js'
16
-
- 'example/*.lock'
17
-
- 'example/*.tsx'
9
+
- '*.lock*'
10
+
- 'packages/react-native-quick-crypto/src/**'
11
+
- 'packages/react-native-quick-crypto/*.json'
12
+
- 'packages/react-native-quick-crypto/*.js'
13
+
- 'packages/react-native-quick-crypto/*.lock*'
14
+
- 'packages/example/src/**'
15
+
- 'packages/example/*.json'
16
+
- 'packages/example/*.js'
17
+
- 'packages/example/*.lock*'
18
+
- 'packages/example/*.tsx'
18
19
pull_request:
19
20
paths:
20
21
- '.github/workflows/validate-js.yml'
21
-
- 'src/**'
22
-
- '*.json'
23
-
- '*.js'
24
-
- '*.lock'
25
-
- 'example/src/**'
26
-
- 'example/*.json'
27
-
- 'example/*.js'
28
-
- 'example/*.lock'
29
-
- 'example/*.tsx'
22
+
- '*.lock*'
23
+
- 'packages/react-native-quick-crypto/src/**'
24
+
- 'packages/react-native-quick-crypto/*.json'
25
+
- 'packages/react-native-quick-crypto/*.js'
26
+
- 'packages/react-native-quick-crypto/*.lock*'
27
+
- 'packages/example/src/**'
28
+
- 'packages/example/*.json'
29
+
- 'packages/example/*.js'
30
+
- 'packages/example/*.lock*'
31
+
- 'packages/example/*.tsx'
30
32
31
33
jobs:
32
34
compile_js:
@@ -44,12 +46,7 @@ jobs:
44
46
- name: Install reviewdog
45
47
uses: reviewdog/action-setup@v1
46
48
47
-
- name: Bootstrap JS (rnqc)
48
-
run: |
49
-
bun install
50
-
51
-
- name: Bootstrap JS (example)
52
-
working-directory: example
49
+
- name: Bootstrap JS
53
50
run: |
54
51
bun install
55
52
@@ -61,7 +58,7 @@ jobs:
61
58
62
59
- name: Run TypeScript in example/ # Reviewdog tsc errorformat: %f:%l:%c - error TS%n: %m
63
60
run: |
64
-
cd example && bun tsc | reviewdog -name="tsc" -efm="%f(%l,%c): error TS%n: %m" -reporter="github-pr-review" -filter-mode="nofilter" -fail-on-error -tee && cd ..
61
+
cd packages/example && bun tsc | reviewdog -name="tsc" -efm="%f(%l,%c): error TS%n: %m" -reporter="github-pr-review" -filter-mode="nofilter" -fail-on-error -tee && cd ..
0 commit comments