Skip to content

fix(website): remove obsolete ipfs setting (#591) #1824

fix(website): remove obsolete ipfs setting (#591)

fix(website): remove obsolete ipfs setting (#591) #1824

Workflow file for this run

name: Verify
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '20.5.1'
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: npm ci
- run: npm run lint
build:
runs-on: ubuntu-latest
env:
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID: ${{secrets.NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID}}
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false # messes up download of ssh dependencies
- name: Use Foundry (for anvil)
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- run: anvil --version
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build
- run: cd ./examples/sample-hardhat-project && npm ci && npm run test