Bump @types/node from 24.3.0 to 24.5.2 #243
Workflow file for this run
This file contains hidden or 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
| # Display Name of the workflow | |
| name: Dynamic Analysis - Unit Test | |
| # When this workflow triggers | |
| on: | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| # Allow this workflow to be called from another workflow | |
| workflow_call: | |
| # Run the unit tests on every change | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| # Define each session of execution that should be executed | |
| jobs: | |
| UnitTest: | |
| # Display name of the job | |
| name: Unit Test | |
| # Operating system filter for the runners | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checks-out your repository under $GITHUB_WORKSPACE | |
| - name: Clone Repo | |
| uses: actions/checkout@v4 | |
| # Set up NodeJS on the build host | |
| - name: Setup Node.JS Environment | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| cache: npm | |
| cache-dependency-path: package-lock.json | |
| # Install all of the dependencies | |
| - name: Install All of the Project Dependencies | |
| run: npm install | |
| # Transpile the TypeScript files to JS | |
| - name: Build Server | |
| run: npm run-script build:Dev | |
| # Run the discovered tests against the source code | |
| - name: Run Tests | |
| run: npm run-script test:Unit |