feat: add time based paymaster #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: run | |
on: | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
tests: | |
name: unit-tests | |
strategy: | |
matrix: | |
platform: [ubuntu-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Run Era Test Node | |
uses: dutterbutter/[email protected] | |
- name: Install Dependencies | |
run: yarn install | |
- name: Run Tests | |
run: | | |
yarn ci:tests |