Skip to content

chore(deps-dev): bump @metricinsights/pp-dev from 0.18.3 to 0.19.0 in /template-vanilla #283

chore(deps-dev): bump @metricinsights/pp-dev from 0.18.3 to 0.19.0 in /template-vanilla

chore(deps-dev): bump @metricinsights/pp-dev from 0.18.3 to 0.19.0 in /template-vanilla #283

Workflow file for this run

name: CI
on:
pull_request:
branches: [main, develop]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Type check
run: npm run typecheck
- name: Run autotests
run: npm test
- name: Verify build output
run: |
if [[ ! -d "dist" ]]; then
echo "Build failed: dist directory not found"
exit 1
fi
echo "Build verification passed"