Skip to content

set matchbox engine version to: 4.0.8 (#20) #35

set matchbox engine version to: 4.0.8 (#20)

set matchbox engine version to: 4.0.8 (#20) #35

Workflow file for this run

name: Run Tests VS Code Extension
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.11.1 ]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
working-directory: vscode-extension
- name: Compile TypeScript
run: npm run compile
working-directory: vscode-extension
- name: Run tests (with xvfb)
run: xvfb-run -a npm test
working-directory: vscode-extension