We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 249bdfe + adbfe19 commit 39944bbCopy full SHA for 39944bb
.build/Solution.cs
@@ -120,12 +120,9 @@ public static RocketSurgeonsGithubActionsJob AddVscodeExtensionTests(this Rocket
120
Run = "npm ci",
121
WorkingDirectory = Solution.VscodeTestExtensionProjectDirectory
122
})
123
- .AddStep(new UsingStep("Vscode extension tests") {
124
- Uses = "coactions/setup-xvfb@v1",
125
- With = {
126
- ["run"] = "npm run test",
127
- ["working-directory"] = Solution.VscodeTestExtensionProjectDirectory
128
- }
+ .AddStep(new HeadlessRunStep("Vscode extension tests") {
+ Run = "npm run test",
+ WorkingDirectory = Solution.VscodeTestExtensionProjectDirectory
129
});
130
}
131
0 commit comments