Skip to content

fix:correcting python command #257

fix:correcting python command

fix:correcting python command #257

Workflow file for this run

name: Test VsCode Extension
on:
pull_request:
branches:
- main
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 run coverage
if: runner.os == 'Linux'
- run: npm run coverage
if: runner.os != 'Linux'