build(deps-dev): bump @vscode/vsce from 3.1.1 to 3.2.1 #334
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
actions: read | |
checks: write | |
jobs: | |
build: | |
name: Build and Test | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
vscode-version: ['stable', 'insiders'] | |
vscode-platform: ['desktop'] | |
runs-on: ${{ matrix.os }} | |
env: | |
VSCODE_TEST_VERSION: ${{matrix.vscode-version}} | |
VSCODE_TEST_PLATFORM: ${{matrix.vscode-platform}} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Install dependencies | |
run: npm install | |
- name: Compile | |
run: npm run compile:test | |
- name: Print Test Config | |
run: node ./.vscode-test.mjs | |
env: | |
VSCODE_CONFIG_LOG: true | |
- name: Run Tests (Linux) | |
run: xvfb-run -a npm test | |
if: runner.os == 'Linux' | |
- name: Run Tests (Win/MacOS) | |
run: npm test | |
if: runner.os != 'Linux' | |
- name: Pack for VSIX Tests | |
run: npm run package:test | |
env: | |
TEST_TEMP: ${{ runner.temp }} | |
- name: Run VSIX Tests (Linux) | |
run: xvfb-run -a npm run test:vsix | |
env: | |
TEST_TEMP: ${{ runner.temp }} | |
if: runner.os == 'Linux' | |
- name: Run VSIX Tests (Win/MacOS) | |
run: npm run test:vsix | |
env: | |
TEST_TEMP: ${{ runner.temp }} | |
if: runner.os != 'Linux' | |
- name: Run Linter | |
if: always() | |
run: npm run lint | |
- uses: dorny/test-reporter@v1 | |
if: ${{ (success() || failure()) && github.event.pull_request.head.repo.full_name == github.repository }} | |
with: | |
name: VS Code Test Results (${{matrix.os}}, ${{matrix.vscode-version}}, ${{matrix.vscode-platform}}) | |
path: 'test-results/*.json' | |
reporter: mocha-json | |
- uses: actions/upload-artifact@v4 | |
if: ${{ (success() || failure()) && github.event.pull_request.head.repo.full_name == github.repository }} | |
with: | |
name: VS Code Test Results (${{matrix.os}}, ${{matrix.vscode-version}}, ${{matrix.vscode-platform}}) | |
path: 'test-results/*.json' |