[Snyk] Upgrade lucide-react from 0.487.0 to 0.510.0 #139
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: 🚀 .NET CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| jobs: | |
| build-and-test: | |
| name: Build and Test | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: 📥 Checkout code | |
| uses: actions/checkout@v4 | |
| - name: 🛠️ Setup .NET 9 SDK | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 9.0.x | |
| - name: 📦 Restore dependencies | |
| run: dotnet restore OPS.sln | |
| - name: 🏗️ Build solution | |
| run: dotnet build OPS.sln --no-restore --configuration Release | |
| - name: ✅ Run tests | |
| run: dotnet test OPS.sln --no-build --configuration Release --verbosity normal |