Skip to content

Security: Remove web3 v1.x #860

Security: Remove web3 v1.x

Security: Remove web3 v1.x #860

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- master
jobs:
unit:
name: Unit Test (Node.js v${{ matrix.node }})
runs-on: ubuntu-latest
strategy:
matrix:
node: [10, 11, 12, 13]
steps:
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- uses: actions/checkout@v2
- uses: actions/cache@v2
id: cache-deps
with:
path: node_modules
key: ${{ runner.os }}-node${{ matrix.code }}-${{ hashFiles('**/package-lock.json') }}
- name: Run test
run: |
npm install
npm run test