[Repo Assist] Prepare release 4.6.0 — fix merge conflict in RELEASE_NOTES.md, bump version 4.5.0 → 4.6.0 #146
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) |