chore(deps): update dependency html-webpack-plugin to v5.6.6 #1286
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 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24.x' | |
| - uses: hmarr/debug-action@v2 | |
| # Install dependencies | |
| - run: npm ci | |
| # Build and output webpack stats to artifacts/webpack-stats.json | |
| - run: npm run build --if-present | |
| # Send webpack stats and build information to RelativeCI | |
| - name: Send webpack stats to RelativeCI | |
| uses: relative-ci/agent-action@3c681926017930047fc03acaa35cd6a44efcbfc3 | |
| with: | |
| webpackStatsFile: ./artifacts/webpack-stats.json | |
| key: ${{ secrets.RELATIVE_CI_KEY }} | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| debug: true |