File tree 3 files changed +19
-10
lines changed
3 files changed +19
-10
lines changed Original file line number Diff line number Diff line change 7
7
- " .github/workflows/check_fullstack_demo_java_pr.yaml"
8
8
- " lib/java/fullstack_demo/**"
9
9
10
- env :
11
- CLERK_PERISHABLE_KEY : 12345
12
-
13
10
jobs :
14
11
build :
15
12
18
15
contents : read
19
16
pull-requests : write
20
17
18
+ env :
19
+ CLERK_PERISHABLE_KEY : 12345
20
+ CLERK_SECRET_KEY : 12345
21
+
21
22
steps :
22
23
- uses : actions/checkout@v4
23
24
Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
build :
12
-
12
+ environment : build
13
13
runs-on : ubuntu-latest
14
14
permissions :
15
15
contents : read
16
16
17
+ env :
18
+ NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=${{ secrets.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY }}
19
+
17
20
steps :
18
21
- uses : actions/checkout@v4
19
22
24
27
25
28
- name : Build Fullstack Demo with Node.js
26
29
working-directory : ./lib/typescript/fullstack_demo
27
- run : npm ci
30
+ run : |
31
+ npm ci
32
+ npm run build
Original file line number Diff line number Diff line change 23
23
- " lesson_16/objects/**"
24
24
- " lesson_17/bank/**"
25
25
- " lesson_26/api/**"
26
- env :
27
- CLERK_PERISHABLE_KEY : 12345
28
-
29
26
jobs :
30
27
build :
31
-
28
+ environment : build
32
29
runs-on : ubuntu-latest
33
30
permissions :
34
31
contents : read
35
32
33
+ env :
34
+ CLERK_PERISHABLE_KEY : 12345
35
+ NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=${{ secrets.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY }}
36
+
36
37
steps :
37
38
- uses : actions/checkout@v4
38
39
- name : Set up JDK
@@ -162,4 +163,6 @@ jobs:
162
163
163
164
- name : Build Fullstack Demo with Node.js
164
165
working-directory : ./lib/typescript/fullstack_demo
165
- run : npm ci
166
+ run : |
167
+ npm ci
168
+ npm run build
You can’t perform that action at this time.
0 commit comments