Daily Test Coverage Improver: Add 13 comprehensive edge case and branch coverage tests #63
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: Build and Test Pull Request | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup .NET | |
| uses: actions/[email protected] | |
| with: | |
| dotnet-version: '8.0.x' | |
| - name: Setup Node.js environment | |
| uses: actions/[email protected] | |
| with: | |
| node-version: 14.17.* | |
| - name: Install tools | |
| run: dotnet tool restore | |
| - name: Build and Test | |
| run: dotnet test -c Release | |
| - name: Test Fable | |
| run: (cd tests/fable && npm i && npm test) |