Skip to content

Commit 1db6adb

Browse files
committed
chore: add push checks
Signed-off-by: Anthony D. Mays <[email protected]>
1 parent bcbc31f commit 1db6adb

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/check_push.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ on:
1515
- "lesson_11/arrays_ts/**"
1616
- "lesson_12/structs_java/**"
1717
- "lesson_12/structs_ts/**"
18+
- "lesson_13/maps_java/**"
19+
- "lesson_13/maps_ts/**"
1820

1921
jobs:
2022
build:
@@ -105,3 +107,13 @@ jobs:
105107
run: |
106108
npm ci
107109
npm run compile
110+
111+
- name: Build Lesson 13 with Java
112+
working-directory: ./lesson_13/maps_java
113+
run: ./gradlew assemble
114+
115+
- name: Build Lesson 13 with Node.js
116+
working-directory: ./lesson_13/maps_ts
117+
run: |
118+
npm ci
119+
npm run compile

0 commit comments

Comments
 (0)