Skip to content

fix:pytest command and ui updates(#78) #64

fix:pytest command and ui updates(#78)

fix:pytest command and ui updates(#78) #64

Workflow file for this run

name: Test and Build VSCode
on:
push:
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 test
if: runner.os == 'Linux'
- run: npm test
if: runner.os != 'Linux'