This pull request introduces a new GitHub Actions workflow to perform a dependency check on the WebAPI project. The workflow is triggered on pushes to the dev branch and can also be manually triggered.
New GitHub Actions workflow:
.github/workflows/webapi-dependency-check.yml: Added a workflow named WebAPI Dependency Check that runs on ubuntu-latest, sets up Node.js version 20, installs dependencies, and runs npm audit to check for high-severity vulnerabilities.
This pull request introduces a new GitHub Actions workflow to perform a dependency check on the WebAPI project. The workflow is triggered on pushes to the
dev
branch and can also be manually triggered.New GitHub Actions workflow:
.github/workflows/webapi-dependency-check.yml
: Added a workflow namedWebAPI Dependency Check
that runs onubuntu-latest
, sets up Node.js version 20, installs dependencies, and runsnpm audit
to check for high-severity vulnerabilities.