KFP-783: perf test fix for lambda warm up failing #2
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
| name: Jest Automatic Testing | |
| on: pull_request | |
| jobs: | |
| run-unit-tests: | |
| name: Run Unit Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout under $GITHUB_WORKSPACE | |
| uses: actions/checkout@v4 | |
| - name: Set up NodeJS | |
| uses: actions/[email protected] | |
| with: | |
| node-version: lts/* | |
| - name: Install all dependencies | |
| run: npm install | |
| working-directory: ./CoreRuntime | |
| - name: Run tests and publish coverage report | |
| uses: ArtiomTr/jest-coverage-report-action@v2 | |
| with: | |
| working-directory: ./CoreRuntime |