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.
1 parent 86dc4ac commit adbfe19Copy full SHA for adbfe19
.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