chore(deps): bump lodash from 4.17.23 to 4.18.1 #7617
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
| # .github/workflows/build.yml | |
| name: Build Verification | |
| on: | |
| pull_request: | |
| jobs: | |
| build-client: | |
| name: Build HTTP Client | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run build script | |
| # This executes the 'build' script in your root package.json | |
| run: npm run build |