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 9209256 commit f64fcf4Copy full SHA for f64fcf4
.github/workflows/check_lesson_02_pr.yaml
@@ -0,0 +1,30 @@
1
+name: Check Lesson 02 Pull Request
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ "main" ]
6
+ paths:
7
+ - "lesson_02/quiz/**"
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
+ permissions:
14
+ contents: read
15
16
+ steps:
17
+ - name: Use Node.js
18
+ uses: actions/setup-node@v4
19
+ with:
20
+ node-version: '20.x'
21
22
+ - name: Build Shared Lib with Node.js
23
+ working-directory: ./lib/javascript/codedifferently-instructional
24
+ run: npm ci
25
26
+ - name: Build Lesson 02 with Node.js
27
+ working-directory: ./lesson_02/quiz
28
+ run: |
29
+ npm ci
30
+ npm run test
0 commit comments