Skip to content

Commit bb0c89b

Browse files
committed
fix: While parsing a block mapping, did not find expected key.
1 parent f4b1731 commit bb0c89b

File tree

1 file changed

+19
-17
lines changed

1 file changed

+19
-17
lines changed

azure-pipelines.yml

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,26 @@ variables:
1313
buildConfiguration: 'Release'
1414

1515
steps:
16-
- task: UseDotNet@2
17-
displayName: 'Install .NET Core SDK'
18-
inputs:
19-
version: 5.0.x
20-
- task: NodeTool@0
21-
inputs:
22-
versionSpec: '10.x'
23-
displayName: 'Install Node.js'
16+
-
17+
task: UseDotNet@2
18+
displayName: 'Install .NET Core SDK'
19+
inputs:
20+
version: 5.0.x
21+
-
22+
task: NodeTool@0
23+
displayName: 'Install Node.js'
24+
inputs:
25+
versionSpec: '10.x'
2426
- script: |
25-
cd src
26-
dotnet test SocketIOClient.UnitTest
27-
cd socket.io-server-v2
28-
npm install
29-
npm start & cd ../socket.io-server-v3
30-
npm install
31-
npm start & cd ../socket.io-server-v4
32-
npm install
33-
npm start & dotnet test ../SocketIOClient.Test
27+
cd src
28+
dotnet test SocketIOClient.UnitTest
29+
cd socket.io-server-v2
30+
npm install
31+
npm start & cd ../socket.io-server-v3
32+
npm install
33+
npm start & cd ../socket.io-server-v4
34+
npm install
35+
npm start & dotnet test ../SocketIOClient.Test
3436
3537
# steps:
3638
# - task: UseDotNet@2

0 commit comments

Comments
 (0)