fix: > 1 tuple in a function call #122
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: Push to branch checks | |
on: | |
push: | |
branches: | |
- master | |
- release/* | |
- feat/* | |
- fix/* | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: npm install, and test | |
run: | | |
cd ./abi-types-generator | |
npm install | |
npm test | |
env: | |
CI: true |