Run Tests #1
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: Run Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: # Allows manual runs from the Actions tab | |
jobs: | |
build: | |
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 | |
# Install Node.js | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
# Install dependencies for Node.js project | |
- name: Install Node.js dependencies | |
run: npm install | |
# Restore .NET tools | |
- name: Restore .NET dependencies | |
run: dotnet tool restore | |
- name: Run .NET tests | |
run: ./build.sh test |