Skip to content

chore: bump @types/yargs from 17.0.24 to 17.0.25 #3979

chore: bump @types/yargs from 17.0.24 to 17.0.25

chore: bump @types/yargs from 17.0.24 to 17.0.25 #3979

name: " 🧪 Integration Tests"
on:
pull_request:
paths-ignore:
- "docs/**"
push:
branches:
- main
paths-ignore:
- "docs/**"
jobs:
run-integration-tests:
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node-version:
- ${{ vars.DEFAULT_NODE_VERSION }}
vscode-version: [stable]
include:
- os: ubuntu-latest
node-version: ${{ vars.DEFAULT_NODE_VERSION }}
vscode-version: package.json
- os: ubuntu-latest
node-version: ${{ vars.DEFAULT_NODE_VERSION }}
vscode-version: insiders
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install and Build
run: |
npm i
npm run build
- name: Run Linux
if: runner.os == 'Linux'
env:
VSCODE_VERSION: ${{ matrix.vscode-version }}
run: xvfb-run -a npm run test-client-integration
- name: Run Windows and MacOS
if: runner.os != 'Linux'
env:
VSCODE_VERSION: ${{ matrix.vscode-version }}
run: npm run test-client-integration
# cspell:ignore xvfb