Skip to content

chore(deps): update dependency body-parser to v1.20.2 - autoclosed #108

chore(deps): update dependency body-parser to v1.20.2 - autoclosed

chore(deps): update dependency body-parser to v1.20.2 - autoclosed #108

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Vonage
on:
pull_request:
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node: [16.x, 18.x, 20.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm install
- name: Lint, Compile, Test
run: npm test