build(deps): Bump cakephp/cakephp from 5.3.7 to 5.4.1 #773
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: 'JS CI' | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| pull_request: | |
| branches: | |
| - '*' | |
| permissions: | |
| contents: read | |
| jobs: | |
| js-ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: '26' | |
| - name: Run npm install | |
| run: npm install | |
| - name: Run npx vp lint | |
| run: npx vp lint | |
| - name: Run npx vp fmt --check | |
| run: npx vp fmt --check | |
| - name: Run npm build | |
| run: npm run build |