Skip to content

Use direct version input instead of bump type #362

Use direct version input instead of bump type

Use direct version input instead of bump type #362

Workflow file for this run

name: Test VSCE Extension
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test-vsce:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install Dependencies
run: npm install
- name: Run Unit Tests (Jest)
run: npm run test:unit
- name: Install xvfb (virtual display for Linux headless)
run: sudo apt-get update && sudo apt-get install -y xvfb
- name: Run Integration Tests
run: xvfb-run -a npm run test:integration