We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f3d182 commit 941a7c6Copy full SHA for 941a7c6
.github/workflows/validate-nuget-packages.yml
@@ -0,0 +1,23 @@
1
+name: Validate NuGet Packages
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - name: Setup .NET Core
17
+ uses: actions/setup-dotnet@v4
18
+ with:
19
+ dotnet-version: 8.0.x
20
+ - name: Download driver
21
+ run: ./build.sh --download-driver
22
+ - name: Validate NuGet packages
23
+ run: dotnet pack ./src/Playwright.sln
0 commit comments