fix: 1、fix mock-data.ts; 2、Add custom watermark content; 3、Add hover animation to the header toolbar; 4、Fix the uncheck bug of the tree component; 5、The segmented component of the preference-drawer has added a fixed tabs header style; 6、input-item component has added the clear function and placeholder. #1638
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: Dependabot post-update | |
name: Build detection | |
on: | |
pull_request_target: | |
types: [opened, synchronize, reopened] | |
branches: | |
- main | |
env: | |
HUSKY: '0' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
post-update: | |
if: github.repository == 'vbenjs/vue-vben-admin' | |
# if: ${{ github.actor == 'dependabot[bot]' }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
# - macos-latest | |
- windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Checkout out pull request | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh pr checkout ${{ github.event.pull_request.number }} | |
- name: Setup Node | |
uses: ./.github/actions/setup-node | |
- name: Build | |
run: | | |
pnpm run build |