Refactor Api to be able to sign with an injected signer from en extensions #318
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: Build and Test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup | |
run: yarn install | |
- name: Build | |
run: yarn build | |
- name: generate types | |
run: yarn generate:types | |
- name: Run tests | |
run: yarn test |