We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ef5e87c + 0772620 commit 4932e54Copy full SHA for 4932e54
1 file changed
.github/workflows/release.yml
@@ -69,14 +69,23 @@ jobs:
69
with:
70
node-version: 18
71
72
- - name: Install specs CLI
73
- run: npm install -g specs
+ - name: Checkout specs tool
+ uses: actions/checkout@v4
74
+ with:
75
+ repository: ganesh47/specs
76
+ path: .specs-tool
77
+ - name: Install specs tool deps
78
+ working-directory: .specs-tool
79
+ run: npm install
80
+ - name: Build specs CLI
81
82
+ run: npm run build --workspace packages/specs-cli
83
84
- name: spec-kit availability
85
run: npm run spec-kit:check
86
87
- name: Run specs coverage for artifacts
- run: specs coverage
88
+ run: node .specs-tool/packages/specs-cli/bin/specs.js coverage
89
90
- name: Extract changelog section
91
id: notes
0 commit comments