Skip to content

Update WASM path for Oniguruma library to use vendor directory #356

Update WASM path for Oniguruma library to use vendor directory

Update WASM path for Oniguruma library to use vendor directory #356

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