Skip to content
This repository has been archived by the owner on May 16, 2024. It is now read-only.

Commands now work on linux and windows #9

Commands now work on linux and windows

Commands now work on linux and windows #9

Workflow file for this run

name: Test VsCode Extension
on:
push:
branches:
- master
jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 18.x
- run: npm install
- run: xvfb-run -a npm test
if: runner.os == 'Linux'
- run: npm test
if: runner.os != 'Linux'