Skip to content
This repository was archived by the owner on Jul 13, 2026. It is now read-only.

chore: basic Viem setup + EIP6963 setup #1

chore: basic Viem setup + EIP6963 setup

chore: basic Viem setup + EIP6963 setup #1

Workflow file for this run

name: ci
permissions: {}
on:
pull_request:
branches:
- master
paths-ignore:
- "**.md"
push:
branches:
- master
paths-ignore:
- "**.md"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
persist-credentials: false
- name: Set up Node
uses: actions/setup-node@v6
with:
node-version-file: ".nvmrc"
cache: "pnpm"
- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: latest
run_install: false
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build project
run: pnpm run build
- name: Upload build artifacts
uses: actions/upload-artifact@v5
with:
name: dist
path: dist