build(deps-dev): bump @ui5/cli from 4.0.27 to 4.0.30 #198
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 and validate the content" | |
| on: | |
| pull_request: | |
| branches: [main] | |
| env: | |
| HUSKY_SKIP: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| if: "! contains(github.event.head_commit.message, '[skip ci]')" | |
| strategy: | |
| matrix: | |
| node-version: [20.x] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Build and validate all steps | |
| run: node tools/builder |