Skip to content

Add specFormat property to devproxy-plugin-open-api-spec-generator-config snippet. Closes #163 #94

Add specFormat property to devproxy-plugin-open-api-spec-generator-config snippet. Closes #163

Add specFormat property to devproxy-plugin-open-api-spec-generator-config snippet. Closes #163 #94

Workflow file for this run

name: Run tests
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@v4
- name: Install Node.js
uses: actions/setup-node@v4
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'