Skip to content

Merge pull request #579 from nfdi4plants/react_tests #13

Merge pull request #579 from nfdi4plants/react_tests

Merge pull request #579 from nfdi4plants/react_tests #13

Workflow file for this run

name: Run Tests
on:
push:
branches: [ main ]
pull_request:
branches:
- main
workflow_dispatch: # Allows manual runs from the Actions tab
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v4
# Set up .NET
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x.x
# Restore .NET tools
- name: Restore .NET dependencies
run: dotnet tool restore
# Install Node.js
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
# Install dependencies
- name: Install Node.js dependencies
run: npm install
- name: Run Tests
run: dotnet run --project ./build/Build.fsproj test