Fixed the problem with error showing on start #321
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
# Builds, runs tests, publishes artifacts | |
name: Build ForcesUnite | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [ready_for_review] | |
jobs: | |
build-api: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '7.0.x' | |
include-prerelease: true | |
- name: Build with .NET | |
run: | | |
cd FU.API | |
dotnet build | |
shell: pwsh | |
# - name: Publish | |
# run: | | |
# cd FU.API | |
# dotnet publish | |
# shell: pwsh | |
# - name: Upload Artifacts | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: .net-app | |
# path: D:\a\PalmettoProgrammers\PalmettoProgrammers\FU.API\FU.API\bin | |
- name: Test | |
run: | | |
cd FU.API | |
dotnet test | |
shell: pwsh | |
build-spa: | |
runs-on: windows-latest | |
steps: | |
- name: Set git to use LF | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
run: | | |
cd FU.SPA | |
npm ci | |
- name: Run linter | |
run: | | |
cd FU.SPA | |
npm run lint | |
- name: Check formatting | |
run: | | |
cd FU.SPA | |
npm run format-check |