chore(deps): bump lodash from 4.17.21 to 4.17.23 #201
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: Check:Build UI | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [main] # Or your main branch name | |
| # Needed for nx-set-shas when run on the main branch | |
| # permissions: | |
| # actions: read | |
| # contents: read | |
| env: | |
| NX_DISABLE_DB: true | |
| # Will cancel any running 'instances' of this workflow on the same branch | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build_ui: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write # Grant write permissions to the repository's contents | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # Fetch all history for proper linting and formatting | |
| token: ${{ secrets.GITHUB_TOKEN }} # Use the GITHUB_TOKEN | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20 | |
| cache: 'npm' | |
| # This line enables distribution | |
| # The "--stop-agents-after" is optional, but allows idle agents to shut down once the "e2e-ci" targets have been requested | |
| # - run: npx nx-cloud start-ci-run --distribute-on="3 linux-medium-js" --stop-agents-after="e2e-ci" | |
| - name: Install dependencies | |
| run: npm ci | |
| # - uses: nrwl/nx-set-shas@v4 | |
| # - run: npx nx-cloud record -- nx format:check | |
| # - run: npx nx affected -t lint test build e2e-ci | |
| # - name: Set Git user information | |
| # run: | | |
| # git config user.email "danbilokha@gmail.com" | |
| # git config user.name "danemesis" | |
| # - name: Update version and push | |
| # run: | | |
| # node tools/update-version.js | |
| # git add . | |
| # git commit -m "chore: bump (ui) version" | |
| # git push origin HEAD | |
| - name: Build KITouch UI PRD app | |
| run: npm run build:ui --verbose |