Skip to content

Bump ws, viem and wagmi #3

Bump ws, viem and wagmi

Bump ws, viem and wagmi #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
name: Type-check, lint & build
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci --legacy-peer-deps
- name: Type-check
run: npx tsc --noEmit
- name: Lint
run: npm run lint
- name: Build
run: npm run build