Skip to content

fix: package.json & package-lock.json to reduce vulnerabilities #8

fix: package.json & package-lock.json to reduce vulnerabilities

fix: package.json & package-lock.json to reduce vulnerabilities #8

Workflow file for this run

name: CI
on:
push:
branches: ['**']
pull_request:
branches: ['master']
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest', 'windows-latest']
node: [8,10,12,14,16]
name: Testing Node ${{ matrix.node }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: npm install
- run: npm test