Skip to content

chore: bump pkg version #372

chore: bump pkg version

chore: bump pkg version #372

Workflow file for this run

name: CI
env:
CELO_MAINNET_RPC_URL: ${{secrets.CELO_MAINNET_RPC_URL}}
on: [push]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['18.x']
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 9.10.0
- name: Cache dependencies
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/pnpm-lock.yaml') }}
- name: Install dependencies
run: |
pnpm install --frozen-lockfile
pnpm add -D ethers viem @types/node
- name: Build
run: pnpm build
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test:unit