Skip to content

Smoketest/1.0.2210.55 testing #204

Smoketest/1.0.2210.55 testing

Smoketest/1.0.2210.55 testing #204

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main branch
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: windows-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: "Update windows SDK"
uses: fbactions/setup-winsdk@v1
with:
winsdk-build-version: 18362
- name: setup-msbuild
uses: microsoft/setup-msbuild@v1
- name: Setup NuGet.exe for use with actions
uses: NuGet/setup-nuget@v1.0.5
- name: NuGet sources
run: nuget sources
- name: msbuild
run: msbuild ./SampleApps/WebView2Samples.sln /p:platform=x86,configuration=Debug /restore /p:RestorePackagesConfig=true