-
Notifications
You must be signed in to change notification settings - Fork 57
43 lines (35 loc) · 957 Bytes
/
ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# 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
8.0.x
- name: Run NPM install
run: npm ci
working-directory: ./src/Saunter.UI
- name: Run dotnet build src
run: dotnet build ./src/Saunter-src.slnf --configuration Debug
- name: Run dotnet build all
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