This repository was archived by the owner on Jan 1, 2026. It is now read-only.
chore(deps): update dependency html-webpack-plugin to v5.6.5 (#30) #46
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: CI — build | |
| # Run on pushes and PRs to verify the project is buildable (npm + webpack) | |
| on: | |
| push: | |
| branches: ["**"] | |
| pull_request: | |
| branches: ["**"] | |
| jobs: | |
| build: | |
| name: Build (Node ${{ matrix.node-version }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: ["18.x", "20.x"] | |
| fail-fast: false | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: "npm" | |
| - name: Show node / npm versions | |
| run: | | |
| node --version | |
| npm --version | |
| - name: Install dependencies | |
| run: npm ci | |
| env: | |
| CI: true | |
| - name: Run build (webpack) | |
| run: npm run build | |
| env: | |
| CI: true | |
| - name: Show build output (if any) | |
| run: | | |
| echo "Present files at repo root:" | |
| ls -la | |
| echo "dist/ (if produced):" | |
| ls -la dist || echo "dist not present" |