File tree Expand file tree Collapse file tree 2 files changed +57
-0
lines changed Expand file tree Collapse file tree 2 files changed +57
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Check Fullstack Demo Java Pull Request
2+
3+ on :
4+ pull_request :
5+ branches : [ "main" ]
6+ paths :
7+ - " lib/java/fullstack_demo/**"
8+
9+ env :
10+ CLERK_PERISHABLE_KEY : 12345
11+
12+ jobs :
13+ build :
14+
15+ runs-on : ubuntu-latest
16+ permissions :
17+ contents : read
18+ pull-requests : write
19+
20+ steps :
21+ - uses : actions/checkout@v4
22+
23+ - name : Set up JDK
24+ uses : actions/setup-java@v4
25+ with :
26+ java-version : ' 21'
27+ distribution : ' temurin'
28+
29+ - name : Build Fullstack Demo with Java
30+ working-directory : ./lib/java/fullstack_demo
31+ run : ./gradlew check
Original file line number Diff line number Diff line change 1+ name : Check Fullstack Demo TS Pull Request
2+
3+ on :
4+ pull_request :
5+ branches : [ "main" ]
6+ paths :
7+ - " lib/typescript/fullstack_demo/**"
8+
9+ jobs :
10+ build :
11+
12+ runs-on : ubuntu-latest
13+ permissions :
14+ contents : read
15+
16+ steps :
17+ - uses : actions/checkout@v4
18+
19+ - name : Use Node.js
20+ uses : actions/setup-node@v4
21+ with :
22+ node-version : ' 20.x'
23+
24+ - name : Build Fullstack Demo with Node.js
25+ working-directory : ./lib/typescript/fullstack_demo
26+ run : npm ci
You can’t perform that action at this time.
0 commit comments