npm(deps-dev): bump lodash-es from 4.17.22 to 4.17.23 #30
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: Build | |
| on: | |
| pull_request: | |
| paths: | |
| - '**.js' | |
| - '**.jsx' | |
| - '**.css' | |
| - '**.scss' | |
| - 'package.json' | |
| - 'package-lock.json' | |
| - 'webpack.config.js' | |
| - '.github/workflows/build.yml' | |
| push: | |
| branches: | |
| - develop | |
| - main | |
| paths: | |
| - '**.js' | |
| - '**.jsx' | |
| - '**.css' | |
| - '**.scss' | |
| - 'package.json' | |
| - 'package-lock.json' | |
| - 'webpack.config.js' | |
| - '.github/workflows/build.yml' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| # Cancels all previous workflow runs for the same branch that have not yet completed. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: Build JS assets | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Node.js | |
| uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 | |
| with: | |
| node-version: "20" | |
| cache: "npm" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build production assets | |
| run: npm run build |