LF-5298: Show a 5-day weather forecast with frost-risk warnings on the Home page #3356
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: Webapp Unit Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - integration | |
| jobs: | |
| webapp_unit_tests: | |
| name: Webapp Unit Tests | |
| runs-on: ubuntu-latest | |
| container: node:22.21 | |
| defaults: | |
| run: | |
| working-directory: packages/webapp | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v3 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| package_json_file: "packages/webapp/package.json" | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Run unit tests | |
| run: pnpm test |