Skip to content

Bump braces from 3.0.2 to 3.0.3 #441

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #441

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
- name: Run lints
run: npm run lint