@plainconceptsplatform/workflows 0.4.2 → 0.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -39,7 +39,7 @@ export function generateOpencodeCi(baseContent, inspection) {
39
39
  key: nuget-\${{ runner.os }}-\${{ hashFiles('**/*.slnx', '**/Directory.Packages.props') }}
40
40
  restore-keys: nuget-\${{ runner.os }}-
41
41
 
42
- - name: Restore .NET dependencies
42
+ - name: Restore .NET dependencies
43
43
  run: dotnet restore ${solutionPath}
44
44
  `;
45
45
  result = insertBeforeMarker(result, nugetSteps, " - name: Install workspace dependencies");
@@ -120,6 +120,8 @@ describe("generateOpencodeCi", () => {
120
120
  expect(result).toContain("Cache NuGet packages");
121
121
  expect(result).toContain("Restore .NET dependencies");
122
122
  expect(result).toContain("dotnet restore apps/api/Numa.slnx");
123
+ expect(result).toContain("\n - name: Restore .NET dependencies\n");
124
+ expect(result).not.toContain("\n - name: Restore .NET dependencies\n");
123
125
  });
124
126
  it("adds the pinned OpenSpec CLI install step when openspec/ directory exists", () => {
125
127
  const result = generateOpencodeCi(OPENCODE_CI_MD, makeInspection({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plainconceptsplatform/workflows",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "Install and update Platform GitHub agentic workflows.",
5
5
  "keywords": [
6
6
  "github-actions",
@@ -40,4 +40,4 @@
40
40
  "typescript": "^5.8.0",
41
41
  "vitest": "^3.0.0"
42
42
  }
43
- }
43
+ }