-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (39 loc) · 886 Bytes
/
ci.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
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