Skip to content

Disable lint stage for now #5

Disable lint stage for now

Disable lint stage for now #5

Workflow file for this run

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 VRCX -p:Configuration=Release -p:Platform=x64