File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 6363 files : ${{ steps.meta.outputs.vsix_file }}
6464
6565 - name : Publish to VS Code Marketplace
66- run : npx vsce publish ${{ steps.meta.outputs.vsix_file }} --pat ${{ secrets.VSCE_TOKEN }}
66+ run : npx vsce publish ${{ steps.meta.outputs.vsix_file }} --pat ${{ secrets.VSCE_PAT }}
6767
6868 - name : Post release summary
6969 run : |
Original file line number Diff line number Diff line change 11name : Test
22
3- on: :
3+ on :
44 push :
55 branches :
66 - main
3030 - name : Install dependencies
3131 run : npm install
3232
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+
3341 - name : Run tests
3442 run : npm test
You can’t perform that action at this time.
0 commit comments