Skip to content

Commit c72933e

Browse files
committed
chore: adds more build checks
Signed-off-by: Anthony D. Mays <[email protected]>
1 parent a4375a3 commit c72933e

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Diff for: .github/workflows/check_push.yml

+14
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches: [ "main" ]
66
paths:
7+
- ".github/workflows/check_push.yml"
78
- "lib/**"
89
- "lesson_02/quiz/**"
910
- "lesson_03/quiz/**"
@@ -21,6 +22,9 @@ on:
2122
- "lesson_15/tdd/**"
2223
- "lesson_16/objects/**"
2324
- "lesson_17/bank/**"
25+
- "lesson_26/api/**"
26+
env:
27+
CLERK_PERISHABLE_KEY: 12345
2428

2529
jobs:
2630
build:
@@ -142,6 +146,16 @@ jobs:
142146
working-directory: ./lesson_17/bank
143147
run: ./gradlew check
144148

149+
- name: Build Lesson 26 with Java
150+
working-directory: ./lesson_26/api/java
151+
run: ./gradlew check
152+
153+
- name: Build Lesson 26 with Node.js
154+
working-directory: ./lesson_26/api/javascript/api_app
155+
run: |
156+
npm ci
157+
npm run test
158+
145159
- name: Build Fullstack Demo with Java
146160
working-directory: ./lib/java/fullstack_demo
147161
run: ./gradlew check

0 commit comments

Comments
 (0)