Skip to content

feat: add auto-signer-provider util for testing #128

feat: add auto-signer-provider util for testing

feat: add auto-signer-provider util for testing #128

Workflow file for this run

name: CI
on:
push:
branches: ["develop", "main"]
pull_request:
branches: ["develop", "main"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "21.6.0"
cache: "pnpm"
- name: Setup Playwright
run: pnpx playwright install chromium --with-deps --only-shell
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Build
run: pnpm build
- name: Run tests
run: pnpm test