Bump gittools/actions from 1.1.1 to 3.1.1 #1001
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: PR-Validation | |
on: [pull_request] | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout Github Action' | |
uses: actions/checkout@v4 | |
- name: Set up .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '5.0.x' | |
- name: Setup Node | |
uses: actions/setup-node@v4.0.3 | |
with: | |
node-version: 21.x | |
- name: Install dependencies in client app | |
working-directory: ch9_release/src/Tailwind.Traders.Web/ClientApp | |
run: npm install | |
- name: Build and publish with dotnet | |
working-directory: ch9_release/src/Tailwind.Traders.Web | |
run: | | |
dotnet build --configuration Release |