@@ -19,10 +19,59 @@ jobs:
19
19
uses : actions/setup-node@v2
20
20
with :
21
21
node-version : ${{ matrix.node-version }}
22
+ - name : ' Build 01 Http Function'
23
+ shell : bash
24
+ run : |
25
+ pushd './src/typescript/AzureFunctions.Http/01CreatingAFunctionApp'
26
+ npm ci
27
+ npm run build --if-present
28
+ popd
29
+ - name : ' Build 02 Http Function'
30
+ shell : bash
31
+ run : |
32
+ pushd './src/typescript/AzureFunctions.Http/02ChangingTheTemplateForGetRequest'
33
+ npm ci
34
+ npm run build --if-present
35
+ popd
36
+ - name : ' Build 03 Http Function'
37
+ shell : bash
38
+ run : |
39
+ pushd './src/typescript/AzureFunctions.Http/03ChangingTheTemplateForPostRequests'
40
+ npm ci
41
+ npm run build --if-present
42
+ popd
43
+ - name : ' Build 04 Http Function'
44
+ shell : bash
45
+ run : |
46
+ pushd './src/typescript/AzureFunctions.Http/04AddingANewFunctionForPostRequests'
47
+ npm ci
48
+ npm run build --if-present
49
+ popd
22
50
- name : ' Build Blob Function'
23
51
shell : bash
24
52
run : |
25
53
pushd './src/typescript/AzureFunctions.Blob'
26
54
npm ci
27
55
npm run build --if-present
28
56
popd
57
+ - name : ' Build DurableFunctionApp'
58
+ shell : bash
59
+ run : |
60
+ pushd './src/typescript/durable-functions/chaining/DurableFunctionApp'
61
+ npm ci
62
+ npm run build --if-present
63
+ popd
64
+ - name : ' Build DurableFunctionApp-Retry'
65
+ shell : bash
66
+ run : |
67
+ pushd './src/typescript/durable-functions/chaining/DurableFunctionApp-Retry'
68
+ npm ci
69
+ npm run build --if-present
70
+ popd
71
+ - name : ' Build DurableFunctionApp-Timeout'
72
+ shell : bash
73
+ run : |
74
+ pushd './src/typescript/durable-functions/chaining/DurableFunctionApp-Timeout'
75
+ npm ci
76
+ npm run build --if-present
77
+ popd
0 commit comments