chore(ui): apply fantomas formatting to client ui code #1158
Workflow file for this run
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 master | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macOS-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4.2.2 | |
| - name: Use .NET Core 10.0 SDK | |
| uses: actions/setup-dotnet@v4.1.0 | |
| with: | |
| dotnet-version: '10.0.x' | |
| - name: Tool restore | |
| run: dotnet tool restore | |
| - name: Format check | |
| run: dotnet fantomas --check . | |
| - name: Test execution | |
| env: | |
| CI: true | |
| GENPRES_DEBUG: 1 | |
| run: dotnet run ServerTests |