Bump packages 2025-11-12 #620
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-and-test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| env: | |
| NODE_VERSION: "18" | |
| DOTNET_NOLOGO: true | |
| jobs: | |
| build-and-test: | |
| name: build-and-test | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| DOTNET_VERSION: ["10.0.x", "9.0.x", "8.0.x"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: | | |
| 9.0.x | |
| 8.0.x | |
| 10.0.x | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| - if: matrix.DOTNET_VERSION == '8.0.x' | |
| run: echo "DOTNET_TFM=net8.0" >> $GITHUB_ENV | |
| - if: matrix.DOTNET_VERSION == '9.0.x' | |
| run: echo "DOTNET_TFM=net9.0" >> $GITHUB_ENV | |
| - if: matrix.DOTNET_VERSION == '10.0.x' | |
| run: echo "DOTNET_TFM=net10.0" >> $GITHUB_ENV | |
| - name: Restore dependencies | |
| run: dotnet restore | |
| - name: Build Tapper.csproj | |
| run: dotnet build ./src/Tapper/Tapper.csproj --framework ${{ env.DOTNET_TFM }} --no-restore | |
| - name: Test | |
| run: dotnet test --framework ${{ env.DOTNET_TFM }} --no-restore | |
| - name: Build Tapper.Generator.csproj | |
| run: dotnet build ./src/Tapper.Generator/Tapper.Generator.csproj --framework ${{ env.DOTNET_TFM }} --no-restore | |
| - name: Generate Code (json) | |
| run: dotnet run --project ./src/Tapper.Generator/Tapper.Generator.csproj --framework ${{ env.DOTNET_TFM }} --no-build -- --project ./tests/Tapper.Tests.Server/Tapper.Tests.Server.csproj --output ./tests/TypeScriptTest/src/generated/json/ | |
| - name: Generate Code (msgpack) | |
| run: dotnet run --project ./src/Tapper.Generator/Tapper.Generator.csproj --framework ${{ env.DOTNET_TFM }} --no-build -- --project ./tests/Tapper.Tests.Server/Tapper.Tests.Server.csproj --output ./tests/TypeScriptTest/src/generated/msgpack --serializer messagepack --naming-style none | |
| - name: Generate Code (json-string-enum) | |
| run: dotnet run --project ./src/Tapper.Generator/Tapper.Generator.csproj --framework ${{ env.DOTNET_TFM }} --no-build -- --project ./tests/Tapper.Tests.Server/Tapper.Tests.Server.csproj --output ./tests/TypeScriptTest/src/generated/json-string-enum --enum nameCamel | |
| - name: Build test api server | |
| run: dotnet build ./tests/Tapper.Tests.Server/Tapper.Tests.Server.csproj --no-restore | |
| - name: Launch test server1 | |
| run: dotnet run --project ./tests/Tapper.Tests.Server/Tapper.Tests.Server.csproj --framework ${{ env.DOTNET_TFM }} --no-build --launch-profile Tapper.Tests.Server & | |
| - name: Launch test server2 | |
| run: dotnet run --project ./tests/Tapper.Tests.Server/Tapper.Tests.Server.csproj --framework ${{ env.DOTNET_TFM }} --no-build --launch-profile Tapper.Tests.Server-JsonStringEnum & | |
| - name: Install yarn | |
| run: npm install -g yarn | |
| - name: Yarn install | |
| run: yarn --cwd ./tests/TypeScriptTest/ install --frozen-lockfile | |
| - name: Yarn test | |
| run: yarn --cwd ./tests/TypeScriptTest/ test |