🐛 fix(Input): no validation if there is no ValueExpression #120
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: Build | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- docs/** | |
- src/** | |
workflow_dispatch: | |
jobs: | |
pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: git pull | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- run: git submodule foreach git checkout main | |
- name: setting dotnet | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: | | |
6.0.x | |
7.0.x | |
8.0.x | |
include-prerelease: true | |
- name: setting tools | |
run: dotnet workload install wasm-tools | |
- name: check tools | |
run: dotnet workload list | |
- name: build | |
run: dotnet build Masa.Blazor.sln |