-
Notifications
You must be signed in to change notification settings - Fork 2
36 lines (34 loc) · 929 Bytes
/
dev_build.yml
File metadata and controls
36 lines (34 loc) · 929 Bytes
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
name: dev_build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/setup-node@master
with:
node-version: 16
- uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Install GUI dependencies
run: npm install
- name: Install Service dependencies
working-directory: anonymizer
run: |
dotnet tool restore
dotnet restore
- name: Check files format
run: npm run check-format
- name: Run linter
run: npm run lint
- name: Build Service
run: npm run build
- name: Generate test data
run: npm run test-init
- name: Test Service
run: npm run test
- name: Build App
run: npm run package