Skip to content

Commit

Permalink
Fix Attempt vrcx-team#2
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminZehowlt committed Nov 14, 2023
1 parent 9a513b4 commit 41638ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/github_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
with:
dotnet-version: '8.0.x'

- name: Setup Node.JS 18
- name: Setup NodeJS 18
uses: actions/setup-node@v4
with:
node-version: 18
Expand All @@ -25,10 +25,10 @@ jobs:
run: cd html && npm ci && cd ..

- name: JS Lint
run: npm run lint
run: cd html && npm run lint && cd ..

- name: Build Web UI
run: npm run production
run: cd html && npm run production && cd ..

- name: Build .NET Application
run: dotnet build VRCX -p:Configuration=Release -p:Platform=x64

0 comments on commit 41638ce

Please sign in to comment.