chore(deps): update dependency webpack to v5.106.1 #1475
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' | |
| # Install dependencies | |
| - run: npm ci | |
| # Build and output webpack stats | |
| - run: npm run build -- --json webpack-stats.json | |
| # Upload artifacts/webpack-stats.json to use on relative-ci.yaml | |
| - name: Upload webpack stats artifact | |
| uses: relative-ci/agent-upload-artifact-action@v2 | |
| with: | |
| webpackStatsFile: ./webpack-stats.json |