Skip to content

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

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

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

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '12', '10' ]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: if [[ $(node -v) =~ v10.*$ ]]; then npm run test-10; else npm run test; fi
test-integration:
runs-on: ubuntu-latest
name: Cluster integration
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: 12
- run: npm install
- run: npm run test-integration