forked from ravendb/ravendb
-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (37 loc) · 917 Bytes
/
StudioTests.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
44
45
46
47
name: tests/studio
on:
push:
branches:
- v6.2
pull_request:
branches:
- v6.2
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Setup nodejs
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install dependencies
run: dotnet restore
- name: Build dotnet
run: dotnet build
- name: Install npm dependencies
run: npm install
working-directory: ./src/Raven.Studio
- name: Restore Studio
run: npm run restore
working-directory: ./src/Raven.Studio
- name: Compile Studio
run: npm run compile
working-directory: ./src/Raven.Studio
- name: Test Studio
run: npm run test
working-directory: ./src/Raven.Studio