Skip to content

fix(deps): update dependency antd to v5 #1477

fix(deps): update dependency antd to v5

fix(deps): update dependency antd to v5 #1477

Workflow file for this run

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