File tree Expand file tree Collapse file tree 3 files changed +19
-10
lines changed Expand file tree Collapse file tree 3 files changed +19
-10
lines changed Original file line number Diff line number Diff line change 77 - " .github/workflows/check_fullstack_demo_java_pr.yaml"
88 - " lib/java/fullstack_demo/**"
99
10- env :
11- CLERK_PERISHABLE_KEY : 12345
12-
1310jobs :
1411 build :
1512
1815 contents : read
1916 pull-requests : write
2017
18+ env :
19+ CLERK_PERISHABLE_KEY : 12345
20+ CLERK_SECRET_KEY : 12345
21+
2122 steps :
2223 - uses : actions/checkout@v4
2324
Original file line number Diff line number Diff line change 99
1010jobs :
1111 build :
12-
12+ environment : build
1313 runs-on : ubuntu-latest
1414 permissions :
1515 contents : read
1616
17+ env :
18+ NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=${{ secrets.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY }}
19+
1720 steps :
1821 - uses : actions/checkout@v4
1922
2427
2528 - name : Build Fullstack Demo with Node.js
2629 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 2323 - " lesson_16/objects/**"
2424 - " lesson_17/bank/**"
2525 - " lesson_26/api/**"
26- env :
27- CLERK_PERISHABLE_KEY : 12345
28-
2926jobs :
3027 build :
31-
28+ environment : build
3229 runs-on : ubuntu-latest
3330 permissions :
3431 contents : read
3532
33+ env :
34+ CLERK_PERISHABLE_KEY : 12345
35+ NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=${{ secrets.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY }}
36+
3637 steps :
3738 - uses : actions/checkout@v4
3839 - name : Set up JDK
@@ -162,4 +163,6 @@ jobs:
162163
163164 - name : Build Fullstack Demo with Node.js
164165 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