mirror of
https://github.com/NuGet/setup-nuget.git
synced 2025-12-06 07:48:23 +08:00
24 lines
435 B
YAML
24 lines
435 B
YAML
name: "Test setup-nuget-exe"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: windows-latest
|
|
strategy:
|
|
matrix:
|
|
nuget-version: [latest, preview]
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- run: npm ci
|
|
- run: npm run build
|
|
- run: npm test
|
|
- uses: ./
|
|
with:
|
|
nuget-version: ${{ matrix.nuget-version }}
|
|
nuget-api-key: ${{ secrets.NuGetAPIKey }}
|
|
- run: nuget
|