Skip to content

Merge pull request #9 from keploy/Akash-Singh04-release1.0.1 #3

Merge pull request #9 from keploy/Akash-Singh04-release1.0.1

Merge pull request #9 from keploy/Akash-Singh04-release1.0.1 #3

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'