EVM processor Typescript: Better Object type merging with default provided type #918
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: test unit | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
test: | |
name: run unit tests | |
if: "!contains(github.event.head_commit.message, 'test skip')" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
lfs: True | |
- name: Install dependencies | |
run: node common/scripts/install-run-rush.js install | |
- name: Build project | |
run: node common/scripts/install-run-rush.js build | |
- name: Run tests | |
run: node common/scripts/install-run-rush.js test |