We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73e5c18 commit 83b073cCopy full SHA for 83b073c
.github/workflows/check_lesson_06_quiz.yaml
@@ -0,0 +1,32 @@
1
+name: Check Lesson 06 Quiz Pull Request
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ "main" ]
6
+ paths:
7
+ - "lesson_06/quiz/**"
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 Shared Lib with Node.js
25
+ working-directory: ./lib/javascript/codedifferently-instructional
26
+ run: npm ci
27
28
+ - name: Build Lesson 06 Quiz with Node.js
29
+ working-directory: ./lesson_06/quiz
30
+ run: |
31
+ npm ci
32
+ npm run check
0 commit comments