Skip to content

build(deps): bump semver from 6.3.0 to 6.3.1 #1

build(deps): bump semver from 6.3.0 to 6.3.1

build(deps): bump semver from 6.3.0 to 6.3.1 #1

Workflow file for this run

name: Test
on:
pull_request:
paths:
- src/**
- test/**
- package.json
- yarn.lock
workflow_call:
jobs:
jest:
runs-on: ubuntu-latest
if: github.head_ref != 'ethers-v6' # already triggered by push
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run Jest test suite
run: yarn test