RavenDB-20103: ARM support for the different variants of VectorizedAnd #80
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.0 | |
pull_request: | |
branches: | |
- v6.0 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '8.0' | |
- 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 |