Skip to content

Commit dac6aaf

Browse files
authored
Add TypeScript HTTP build (#87)
* Add TypeScript HTTP build * Add remaining TypeScript projects
1 parent 176d456 commit dac6aaf

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

.github/workflows/typescript.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,59 @@ jobs:
1919
uses: actions/setup-node@v2
2020
with:
2121
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
2250
- name: 'Build Blob Function'
2351
shell: bash
2452
run: |
2553
pushd './src/typescript/AzureFunctions.Blob'
2654
npm ci
2755
npm run build --if-present
2856
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

Comments
 (0)