Skip to content

feat: sponsored paymaster and bundler logic #114

feat: sponsored paymaster and bundler logic

feat: sponsored paymaster and bundler logic #114

Workflow file for this run

name: coverage
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
jobs:
coverage:
name: coverage
permissions: write-all
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
- name: Install dependencies
uses: ./.github/actions/install-dependencies
- name: Run the tests
run: bun run test:ci
env:
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
BUNDLER_URL: ${{ secrets.BUNDLER_URL }}
PAYMASTER_URL: ${{ secrets.PAYMASTER_URL }}
CHAIN_ID: ${{ secrets.CHAIN_ID }}
- name: report coverage
uses: davelosert/vitest-coverage-report-action@v2
with:
json-summary-path : ./coverage/coverage-summary.json
json-final-path: './coverage/coverage-final.json'
vite-config-path: ./tests/vitest.config.ts
github-token: ${{ secrets.GITHUB_TOKEN }}