Skip to content

Bump version from 2026.2.24 to 2026.3.13 (#66) #364

Bump version from 2026.2.24 to 2026.3.13 (#66)

Bump version from 2026.2.24 to 2026.3.13 (#66) #364

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