Skip to content

Update tsup.config.ts to make 'ethers' a peer dependency #3

Update tsup.config.ts to make 'ethers' a peer dependency

Update tsup.config.ts to make 'ethers' a peer dependency #3

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: "pnpm"
# Generate lockfile if it doesn't exist
- run: pnpm install --no-frozen-lockfile
# Now we can run with frozen-lockfile
- run: pnpm install --frozen-lockfile
- run: pnpm run lint && pnpm run build