Bringing up the description of the showcase from the bottom #114
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: CI | |
on: | |
push: | |
branches: | |
- master | |
- release-* | |
pull_request: | |
workflow_dispatch: | |
env: | |
DOTNET_NOLOGO: true | |
VERBOSE_TEST_LOGGING: true | |
defaults: | |
run: | |
shell: pwsh | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Setup .NET SDK | |
uses: actions/[email protected] | |
with: | |
dotnet-version: 8.0.x | |
- name: Build | |
run: dotnet build src --configuration Release -graph | |
- name: Set up Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: 21.6.x | |
- name: install frontend packages | |
run: npm install | |
working-directory: src/frontend | |
- name: build frontend | |
run: npm run build | |
working-directory: src/frontend |