File tree Expand file tree Collapse file tree 1 file changed +24
-18
lines changed
Expand file tree Collapse file tree 1 file changed +24
-18
lines changed Original file line number Diff line number Diff line change 88 BuildAndTest :
99 runs-on : windows-latest
1010 steps :
11- - uses : actions/checkout@v1
12- - name : Setup .NET Core
13- uses : actions/setup-dotnet@v1
14- - name : Build
15- run : dotnet build ./src/ServiceBus.AttachmentPlugin.sln --configuration Release
16- - name : Install NPM
17- uses : actions/setup-node@v1
18- with :
19- node-version : ' 12'
20- - run : npm install -g azurite
21- - shell : cmd
22- run : start /B azurite-blob
23- - name : trying http://localhost:10000
24- - shell : cmd
25- run : timeout 5 && curl http://localhost:10000
26- - name : trying http://127.0.0.1:10000
27- - shell : cmd
28- run : timeout 5 && curl http://127.0.0.1:10000
11+ - uses : actions/checkout@v1
12+ - name : Setup .NET Core
13+ uses : actions/setup-dotnet@v1
14+ - name : Build
15+ run : dotnet build ./src/ServiceBus.AttachmentPlugin.sln --configuration Release
16+ - name : Install NPM
17+ uses : actions/setup-node@v1
18+ with :
19+ node-version : ' 12'
20+ - run : npm install -g azurite
21+ - shell : cmd
22+ run : start /B azurite-blob
23+
24+ - shell : cmd
25+ name : trying http://127.0.0.1:10000
26+ run : |
27+ timeout 5
28+ curl http://127.0.0.1:10000
29+
30+ - shell : cmd
31+ name : trying http://localhost:10000
32+ run : |
33+ timeout 5
34+ curl http://localhost:10000
2935# - name: Run tests
3036# run: dotnet test ./src/ServiceBus.AttachmentPlugin.sln --configuration Release --no-restore --verbosity normal
3137# Deploy:
You can’t perform that action at this time.
0 commit comments