Skip to content

fix: optimize chat + various small fixes #706

fix: optimize chat + various small fixes

fix: optimize chat + various small fixes #706

Workflow file for this run

name: client
on:
pull_request:
paths-ignore:
- "contracts/**"
- "**/manifest.json"
- ".github/**"
- "pnpm-lock.yaml"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test-client:
runs-on: ubuntu-latest
env:
VITE_PUBLIC_MASTER_ADDRESS: "0x0"
VITE_PUBLIC_MASTER_PRIVATE_KEY: "0x0"
VITE_PUBLIC_ACCOUNT_CLASS_HASH: "0x0"
strategy:
matrix:
node-version: [21.x]
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v4
with:
version: 9.7.0
- uses: actions/checkout@v4
- name: Install dependencies
run: pnpm i
- name: Build packages
run: pnpm run build-packages
- name: Execute Unit tests
run: pnpm run test-client