This pull request introduces two new GitHub Actions workflows to automate testing and code coverage for the WebAPI project. These workflows will run on the dev branch and any changes within the src/webapi directory.
New GitHub Actions workflows:
.github/workflows/webapi-code-coverage.yml: Adds a workflow to run code coverage checks on the WebAPI project, including steps to set up Node.js, install dependencies, run tests with coverage, and upload the coverage report.
.github/workflows/webapi-test.yml: Adds a workflow to run tests on the WebAPI project, including steps to set up Node.js, install dependencies, and run tests.
This pull request introduces two new GitHub Actions workflows to automate testing and code coverage for the WebAPI project. These workflows will run on the
dev
branch and any changes within thesrc/webapi
directory.New GitHub Actions workflows:
.github/workflows/webapi-code-coverage.yml
: Adds a workflow to run code coverage checks on the WebAPI project, including steps to set up Node.js, install dependencies, run tests with coverage, and upload the coverage report..github/workflows/webapi-test.yml
: Adds a workflow to run tests on the WebAPI project, including steps to set up Node.js, install dependencies, and run tests.