Skip to content

Merge pull request #34 from georgeistes/ui-ux-patch-1 #1

Merge pull request #34 from georgeistes/ui-ux-patch-1

Merge pull request #34 from georgeistes/ui-ux-patch-1 #1

Workflow file for this run

# .github/workflows/test.yml
name: Test VSCode Extension
on:
push:
branches:
- main
jobs:
test:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- run: npm install
- name: Run tests (Linux)
if: runner.os == 'Linux'
run: xvfb-run -a npm test
- name: Run tests (non-Linux)
if: runner.os != 'Linux'
run: npm test