Skip to content

Bump axios from 1.3.4 to 1.6.1 #371

Bump axios from 1.3.4 to 1.6.1

Bump axios from 1.3.4 to 1.6.1 #371

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [ 16, 18 ]
ethers: [ 5, 6 ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install and build
run: |
npm install
npm run build
- name: Run tests
run: ETHERSJS_VERSION=${{ matrix.ethers }} npm run test