Publish v0.6.0: new account types & multisig signatures codec #21
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: Verify | |
# Trigger the workflow on all pull requests, and on push to specific branches | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Node.js, NPM | |
if: ${{ steps.result.outputs.status != 'success' }} | |
uses: actions/setup-node@v2-beta | |
with: | |
node-version: '14' | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: yarn | |
- name: Build sources | |
run: yarn build | |
- name: Lint | |
run: yarn lint | |
- name: Tests | |
run: yarn test --verbose |