Bump the npm_and_yarn group across 39 directories with 1 update #1012
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
| # .github/workflows/frontend.yml | |
| name: BUG Frontend | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| paths: | |
| - "src/client/**" | |
| - "src/modules/**" | |
| pull_request: | |
| branches: | |
| - "main" | |
| paths-ignore: | |
| - "**/README.md" | |
| - "docs/**" | |
| jobs: | |
| frontend: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [22] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| name: Frontend Build & Test using Node.js ${{ matrix.node-version }} | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm ci | |
| - run: cd src/client && npm test | |
| - run: cd src/client && npm run build --if-present |