Skip to content

fix(deps): update dependency vue to v3.5.25 (#1208) #7044

fix(deps): update dependency vue to v3.5.25 (#1208)

fix(deps): update dependency vue to v3.5.25 (#1208) #7044

Workflow file for this run

name: Build Package
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 24.x ]
steps:
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Lint all packages
run: npm run lint
- name: Build and test
run: |
npm run build --if-present
npm test
- name: Code Coverage Report
uses: irongut/CodeCoverageSummary@v1.3.0
with:
filename: "**/cobertura-coverage.xml"
badge: true
format: markdown
indicators: true
output: both
thresholds: '60 80'
- name: Add Coverage PR Comment
uses: marocchino/sticky-pull-request-comment@v2
if: github.event_name == 'pull_request'
with:
recreate: true
path: code-coverage-results.md