Replace node-rsa with webcrypto api (removes the need for polyfills in browser) #272
Workflow file for this run
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 |