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 2cb6483 commit 3d0cfbfCopy full SHA for 3d0cfbf
.github/workflows/release.yml
@@ -63,7 +63,7 @@ jobs:
63
files: ${{ steps.meta.outputs.vsix_file }}
64
65
- name: Publish to VS Code Marketplace
66
- run: npx vsce publish ${{ steps.meta.outputs.vsix_file }} --pat ${{ secrets.VSCE_TOKEN }}
+ run: npx vsce publish ${{ steps.meta.outputs.vsix_file }} --pat ${{ secrets.VSCE_PAT }}
67
68
- name: Post release summary
69
run: |
.github/workflows/test.yml
@@ -30,5 +30,13 @@ jobs:
30
- name: Install dependencies
31
run: npm install
32
33
+ - name: Setup headless display (Linux only)
34
+ if: runner.os == 'Linux'
35
+ run: |
36
+ sudo apt-get update
37
+ sudo apt-get install -y xvfb
38
+ Xvfb :99 -screen 0 1024x768x24 &
39
+ echo "DISPLAY=:99" >> $GITHUB_ENV
40
+
41
- name: Run tests
42
run: npm test
0 commit comments