Bump lodash from 4.17.23 to 4.18.1 #168
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: Build, Test, Lint, and Check Types | |
| on: [pull_request] | |
| jobs: | |
| run: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set Node.js 18.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18.x | |
| - name: Install packages | |
| uses: borales/actions-yarn@v4 | |
| with: | |
| cmd: install --frozen-lockfile | |
| - name: Build production bundle | |
| uses: borales/actions-yarn@v4 | |
| with: | |
| cmd: build | |
| - name: Lint | |
| uses: borales/actions-yarn@v4 | |
| with: | |
| cmd: lint | |
| - name: Check types | |
| uses: borales/actions-yarn@v4 | |
| with: | |
| cmd: check-types | |
| - name: Test | |
| uses: borales/actions-yarn@v4 | |
| with: | |
| cmd: test | |
| - name: Generate test coverage | |
| uses: borales/actions-yarn@v4 | |
| with: | |
| cmd: report-coverage | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |