Skip to content

Commit ea2f5d0

Browse files
authored
fix: correct run commands for lesson 02 checks (#57)
* chore: testing submit Signed-off-by: Anthony D. Mays <[email protected]> * chore: fix command Signed-off-by: Anthony D. Mays <[email protected]> * chore: fix command Signed-off-by: Anthony D. Mays <[email protected]> * chore: revert file Signed-off-by: Anthony D. Mays <[email protected]> --------- Signed-off-by: Anthony D. Mays <[email protected]>
1 parent 16d30f3 commit ea2f5d0

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/check_lesson_02_pr.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,6 @@ jobs:
3737

3838
- name: Build Lesson 02 with Node.js
3939
working-directory: ./lesson_02/quiz
40-
run: npm ci
41-
run: npm run test
40+
run: |
41+
npm ci
42+
npm run test

.github/workflows/check_push.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ jobs:
3838

3939
- name: Build Shared Lib with Node.js
4040
working-directory: ./lib/typescript/codedifferently-instructional
41-
run: npm ci
42-
run: npm run test
41+
run: |
42+
npm ci
43+
npm run test
4344
4445

0 commit comments

Comments
 (0)