Skip to content

Commit e2b066f

Browse files
Specify platform names in workflow steps (#2909)
1 parent e07ed7d commit e2b066f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,23 +63,23 @@ jobs:
6363
run: xvfb-run -a pnpm --color test
6464
if: runner.os == 'Linux'
6565

66-
- name: Run tests (Other)
66+
- name: Run tests (Win,Mac)
6767
run: pnpm --color test
6868
if: runner.os != 'Linux'
6969

7070
- name: Run Talon-JS tests (Linux)
7171
run: xvfb-run -a pnpm -F @cursorless/test-harness test:talonJs
7272
if: runner.os == 'Linux' && matrix.app_version == 'stable'
7373

74-
- name: Run Talon-JS tests (Other)
74+
- name: Run Talon-JS tests (Win,Mac)
7575
run: pnpm -F @cursorless/test-harness test:talonJs
7676
if: runner.os != 'Linux' && matrix.app_version == 'stable'
7777

7878
- name: Run Cursorless-everywhere-talon tests (Linux)
7979
run: xvfb-run -a pnpm -F @cursorless/cursorless-everywhere-talon-e2e test:quickjs
8080
if: runner.os == 'Linux' && matrix.app_version == 'stable'
8181

82-
- name: Run Cursorless-everywhere-talon tests (Other)
82+
- name: Run Cursorless-everywhere-talon tests (Win,Mac)
8383
run: pnpm -F @cursorless/cursorless-everywhere-talon-e2e test:quickjs
8484
if: runner.os != 'Linux' && matrix.app_version == 'stable'
8585

@@ -120,11 +120,11 @@ jobs:
120120
packagePath: packages/cursorless-vscode/dist
121121
dryRun: true
122122

123-
- name: Rename vsix
123+
- name: Rename vsix (Linux)
124124
run: mv ${{ steps.createVsix.outputs.vsixPath }} cursorless-development.vsix
125125
if: runner.os == 'Linux' && matrix.app_version == 'stable'
126126

127-
- name: Upload vsix
127+
- name: Upload vsix (Linux)
128128
uses: actions/upload-artifact@v4
129129
if: runner.os == 'Linux' && matrix.app_version == 'stable'
130130
with:

0 commit comments

Comments
 (0)