chore(deps): update dependency vue to v3.5.27 #738
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: PR Build | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - dev | |
| jobs: | |
| build: | |
| if: github.repository == 'zhensherlock/watermark-js-plus' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - name: Clean dependencies | |
| run: | | |
| rm -rf package-lock.json node_modules | |
| - name: Install Package | |
| run: npm i | |
| - name: Build Package | |
| run: npm run build | |
| - name: Test Package | |
| run: npm run test | |
| - name: Build Docs Package | |
| run: npm run docs:build |