Merge pull request #19914 from ppekrol/v6.2 #95
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |