removed dependency

This commit is contained in:
narayana 2021-09-27 22:16:30 +05:30
parent 8c728cab05
commit 875ca28ece
10 changed files with 380 additions and 46 deletions

26
.github/workflows/unitTests.yml vendored Normal file
View 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