fix: default values are properly omitted #59
This file contains hidden or 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: CI | |
| on: | |
| pull_request: | |
| branches: [main, develop] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [ 20.x, 22.x ] | |
| steps: | |
| - name: Install algokit | |
| run: pipx install algokit | |
| - name: Start LocalNet | |
| run: algokit localnet start | |
| - | |
| name: Checkout | |
| uses: actions/[email protected] | |
| - | |
| name: Use Node.js | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - | |
| name: Install Dependencies | |
| run: npm install | |
| - | |
| name: Run Build | |
| run: npm run build | |
| - | |
| name: Unit Tests with Coverage | |
| run: npm run test:cov |