Expose CellDataType, CellEditor static classes #9
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: .NET Test Pipeline | |
on: | |
push: | |
branches: | |
- main | |
- '**' # Runs on all branches | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '8.x' | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore | |
- name: Run tests | |
run: dotnet test Gridazor.Tests/Gridazor.Tests.csproj --no-build --verbosity normal | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Navigate to JavaScript project directory | |
run: cd Gridazor.Tests/ClientSideTests | |
- name: Install JavaScript dependencies | |
run: npm install | |
- name: Run JavaScript tests | |
run: npm test |