Skip to content

chore(deps): update dependency webpack-dev-server to v5.2.0 #1471

chore(deps): update dependency webpack-dev-server to v5.2.0

chore(deps): update dependency webpack-dev-server to v5.2.0 #1471

Workflow file for this run

name: Build
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16.x'
# 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@26338b6cffd0b7eef7136ebed5ff3ddc22cbe113
with:
webpackStatsFile: ./artifacts/webpack-stats.json
key: ${{ secrets.RELATIVE_CI_KEY }}
token: ${{ secrets.GITHUB_TOKEN }}