mirror of
https://github.com/donl/plivo-node.git
synced 2026-05-29 06:12:39 -06:00
removed dependency
This commit is contained in:
parent
8c728cab05
commit
875ca28ece
10 changed files with 380 additions and 46 deletions
26
.github/workflows/unitTests.yml
vendored
Normal file
26
.github/workflows/unitTests.yml
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
name: UnitTests
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [4.x, 5.x, 6.x, 7.x, 8.x, 9.x, 10.x, 11.x, 12.x, 13.x, 14.x, 15.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- run: npm install request
|
||||
- run: npm install
|
||||
- run: npm test
|
||||
Loading…
Add table
Add a link
Reference in a new issue