Skip to content

Bump @vscode/vsce from 2.24.0 to 2.25.0 #258

Bump @vscode/vsce from 2.24.0 to 2.25.0

Bump @vscode/vsce from 2.24.0 to 2.25.0 #258

Workflow file for this run

name: CI Tests
on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
merge_group:
types: [ checks_requested ]
jobs:
ci:
name: node
strategy:
matrix:
os: [ windows-latest, macos-latest, ubuntu-latest ]
runs-on: ${{ matrix.os }}
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_GENERATE_ASPNET_CERTIFICATE: false
DISPLAY: ':99.0'
defaults:
run:
working-directory: vscode-powershell
steps:
- name: Checkout PowerShellEditorServices
uses: actions/checkout@v4
with:
repository: PowerShell/PowerShellEditorServices
path: PowerShellEditorServices
- name: Checkout vscode-powershell
uses: actions/checkout@v4
with:
path: vscode-powershell
- name: Install dotnet
uses: actions/setup-dotnet@v4
with:
cache: true
cache-dependency-path: 'PowerShellEditorServices/**/packages.lock.json'
global-json-file: PowerShellEditorServices/global.json
source-url: https://pkgs.dev.azure.com/mscodehub/PowerShellCore/_packaging/PowerShellCore_PublicPackages/nuget/v3/index.json
config-file: PowerShellEditorServices/NuGet.config
env:
NUGET_AUTH_TOKEN: ${{ secrets.AZURE_NUGET_TOKEN }}
- name: Install PSResources
shell: pwsh
run: ./tools/installPSResources.ps1
- name: Deploy generated NuGet configuration
shell: pwsh
run: Copy-Item ../../nuget.config ../PowerShellEditorServices/NuGet.config
- name: Deploy NPM configuration
shell: pwsh
run: Copy-Item .github/workflows/npmrc .npmrc
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
cache-dependency-path: vscode-powershell/package-lock.json
- name: Start X virtual framebuffer
if: matrix.os == 'ubuntu-latest'
run: /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
- name: Build, test and package
shell: pwsh
run: Invoke-Build -Configuration Release
env:
NPM_PASSWORD: ${{ secrets.AZURE_NPM_PASSWORD_BASE64 }}
- name: Upload build artifacts
uses: actions/upload-artifact@v4
if: always()
with:
name: vscode-powershell-vsix-${{ matrix.os }}
path: '**/*.vsix'
- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: vscode-powershell-test-results-${{ matrix.os }}
path: '**/test-results.xml'