Skip to content

Commit 8c9bfde

Browse files
Remove extra padding from readme items
1 parent f8af8e8 commit 8c9bfde

File tree

6 files changed

+10
-35
lines changed

6 files changed

+10
-35
lines changed

.github/workflows/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Deploy
22

33
on:
44
workflow_run:
5-
workflows: [Test, Test meta]
5+
workflows: [Test]
66
types: [completed]
77
branches: [main]
88

.github/workflows/test-meta.yaml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/workflows/test.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ jobs:
3131
- name: Compile
3232
run: npm --color run compile
3333

34+
- name: Run meta tests (Linux)
35+
run: npm --color run test:meta
36+
if: runner.os == 'Linux'
37+
3438
- name: Run tests (Linux)
3539
run: xvfb-run -a npm --color run test:ci
3640
if: runner.os == 'Linux'

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "andreas-talon",
33
"displayName": "Andreas Talon",
44
"description": "VSCode extension used by Talon Voice",
5-
"version": "3.64.2",
5+
"version": "3.64.3",
66
"publisher": "AndreasArvidsson",
77
"license": "MIT",
88
"main": "./out/extension.js",

src/file-updater/updateReadme.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ export function updateReadme(content: string | null): string {
2828
commands.push(`\n### ${category} commands\n`);
2929
}
3030
const fullCommand = getFullCommand(command as CommandId);
31-
commands.push(`- \`${fullCommand}${desc.args}\` `);
32-
commands.push(` ${desc.description}`);
31+
commands.push(`- \`${fullCommand}${desc.args}\` `);
32+
commands.push(` ${desc.description}`);
3333
}
3434

3535
commands.push("");

0 commit comments

Comments
 (0)