File tree Expand file tree Collapse file tree
samples/server/petstore/typescript-nestjs-server Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Samples TS servers
2+
3+ on :
4+ push :
5+ paths :
6+ - samples/server/petstore/typescript-nestjs-server/**
7+ pull_request :
8+ paths :
9+ - samples/server/petstore/typescript-nestjs-server/**
10+ jobs :
11+ build :
12+ name : Build projects
13+ runs-on : ubuntu-latest
14+ strategy :
15+ fail-fast : false
16+ matrix :
17+ node :
18+ - " 18.x"
19+ - " 20.x"
20+ sample :
21+ - samples/server/petstore/typescript-nestjs-server/**
22+ steps :
23+ - uses : actions/checkout@v5
24+ - name : Use Node.js 20.x
25+ uses : actions/setup-node@v5
26+ with :
27+ node-version : ${{ matrix.node }}
28+ cache : ' npm' # Or 'yarn'
29+ - name : npm install
30+ working-directory : ${{ matrix.sample }}
31+ run : npm install
32+ - name : npm test
33+ working-directory : ${{ matrix.sample }}
34+ run : npm test
Original file line number Diff line number Diff line change 132132 </plugin >
133133 </plugins >
134134 </build >
135- </project >
135+ </project >
136+
You can’t perform that action at this time.
0 commit comments