Module/v1.1.0 #7
Workflow file for this run
This file contains 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: 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 }} |