File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3030 fileVersion : ${{ steps.gitversion.outputs.MajorMinorPatch }}
3131 informationalVersion : ${{ steps.gitversion.outputs.InformationalVersion }}
3232
33+ - name : Setup Node.js
34+ uses : actions/setup-node@v4
35+ with :
36+ node-version : ' 20'
37+ cache : ' npm'
38+ cache-dependency-path : TiaCodegen-ts/package-lock.json
39+ - name : Install TypeScript dependencies
40+ run : npm ci
41+ working-directory : TiaCodegen-ts
42+ - name : Build TypeScript
43+ run : npm run build
44+ working-directory : TiaCodegen-ts
45+ - name : Test TypeScript
46+ run : npm test
47+ working-directory : TiaCodegen-ts
3348 - name : Restore dependencies
3449 run : dotnet restore
3550 - name : Build
Original file line number Diff line number Diff line change 1515 uses : actions/setup-dotnet@v1
1616 with :
1717 dotnet-version : 9.0.x
18+ - name : Setup Node.js
19+ uses : actions/setup-node@v4
20+ with :
21+ node-version : ' 20'
22+ cache : ' npm'
23+ cache-dependency-path : TiaCodegen-ts/package-lock.json
24+ - name : Install TypeScript dependencies
25+ run : npm ci
26+ working-directory : TiaCodegen-ts
27+ - name : Build TypeScript
28+ run : npm run build
29+ working-directory : TiaCodegen-ts
30+ - name : Test TypeScript
31+ run : npm test
32+ working-directory : TiaCodegen-ts
1833 - name : Restore dependencies
1934 run : dotnet restore
2035 - name : Build
You can’t perform that action at this time.
0 commit comments