Skip to content

Merge branch 'ethers-v6' into v5-note #328

Merge branch 'ethers-v6' into v5-note

Merge branch 'ethers-v6' into v5-note #328

Workflow file for this run

# GitHub Nodejs CI
name: nodejs
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['14.x', '16.x', '18.x']
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install codecov -g
npm install
npm run build
env:
CI: true