Prototype of the cli utility for AOT/Trim applications #252
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
# Note: ci.yaml and release.yaml have some similar steps | |
# If updating dotnet-version, set in both. | |
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' # latest LTS version | |
- uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: '6.0.x' # SDK Version to use; x will use the latest version of the channel | |
- name: Run NPM install | |
run: npm ci | |
working-directory: ./src/Saunter.UI | |
- name: Run dotnet build | |
run: dotnet build --configuration Debug | |
- name: Run dotnet test | |
run: dotnet test --no-build | |
# Below steps run only on CI, not release | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: saunter-bin | |
path: ./src/Saunter/bin |