Enhance the Visual Style of the "Organization Setting" Page #158
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: CS System Develop PR Check | |
env: | |
WEB_APP_DEPLOYMENT_TYPE: 'DefaultDeploymentType' | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- labeled | |
- unlabeled | |
issue_comment: | |
types: | |
- created | |
- edited | |
- deleted | |
jobs: | |
build_blazor_server: | |
name: build blazor | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
global-json-file: src/CrystallineSociety/global.json | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Build | |
run: dotnet build src/CrystallineSociety/CrystallineSociety.sln -c Release -p:EnableWindowsTargeting=true |