forked from ElmahCore/ElmahCore
-
Notifications
You must be signed in to change notification settings - Fork 1
43 lines (31 loc) · 798 Bytes
/
build.yml
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
name: Build
on:
workflow_dispatch:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
filter: tree:0
- uses: actions/setup-node@v4
with:
node-version: 18
- name: NPM Install
working-directory: ui
run: npm ci
- name: NPM Lint
working-directory: ui
run: npm run lint
- name: NPM Build
working-directory: ui
run: npm run build
- uses: actions/setup-dotnet@v3
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal