Skip to content

Module/v1.1.0

Module/v1.1.0 #7

Workflow file for this run

name: Outdated package checks
# Run workflow on pull request to the main branch
on:
pull_request:
types: [opened, synchronize, reopened]
branches: [ main ]
workflow_dispatch:
env:
SOLUTION_PATH: 'src/JsonToPowershellClass.sln'
PROJECT_DIR: 'src/JsonToPowershellClass.Blazor'
EXCLUDE_PACKAGES: 'Microsoft.VisualStudio.Azure.Containers.Tools.Targets'
jobs:
outdated-packages-check:
runs-on: ubuntu-latest
steps:
- uses: trossr32/[email protected]
with:
use-dotnet-outdated: true
dotnet-solution-or-project-path: ${{ env.SOLUTION_PATH }}
dotnet-exclude-packages: ${{ env.EXCLUDE_PACKAGES }}
use-npm-outdated: true
npm-project-directory: ${{ env.PROJECT_DIR }}