a #6
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: VRCX | |
on: | |
- push | |
- pull_request | |
jobs: | |
build_vrcx: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET 8 | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Setup NodeJS 18 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Restore Node Depedencies | |
run: cd html && npm ci && cd .. | |
#- name: JS Lint | |
# run: cd html && npm run lint && cd .. | |
- name: Build Web UI | |
run: cd html && npm run production && cd .. | |
- name: Build .NET Application | |
run: dotnet build -p:Configuration=Release -p:Platform=x64 |