Update pnpm to v11 #685
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: Integration Test | |
| on: | |
| push: | |
| branches: [ master, refactor ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| integration-test: | |
| name: Integration Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Cache NuGet packages | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.nuget/packages | |
| key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', 'Directory.Build.props') }} | |
| restore-keys: ${{ runner.os }}-nuget- | |
| - name: Run Integration Tests | |
| run: dotnet test src/SmartSql.Test.Integration/SmartSql.Test.Integration.csproj --filter "FullyQualifiedName!~PostgreSql&FullyQualifiedName!~SqlServer" |