Daily Test Coverage Improver: Remove dead code identified in PR #183 #60
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/setup-dotnet@v4.3.1 | |
| with: | |
| dotnet-version: '8.0.x' | |
| - name: Setup Node.js environment | |
| uses: actions/setup-node@v2.4.0 | |
| 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) |