Skip to content

Update the pinned row style #10

Update the pinned row style

Update the pinned row style #10

Workflow file for this run

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