Skip to content

feat: testing framework #4

feat: testing framework

feat: testing framework #4

Workflow file for this run

name: unit-tests
on:
workflow_dispatch:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
jobs:
unit-tests:
name: unit-tests
permissions: write-all
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-unit-tests
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
uses: ./.github/actions/install-dependencies
- name: Run the account tests
run: bun run test:ci
env:
E2E_PRIVATE_KEY_ONE: ${{ secrets.E2E_PRIVATE_KEY_ONE }}