Skip to content

chore(deps-dev): bump vite from 8.0.3 to 8.0.13 in /packages/hub (#152) #420

chore(deps-dev): bump vite from 8.0.3 to 8.0.13 in /packages/hub (#152)

chore(deps-dev): bump vite from 8.0.3 to 8.0.13 in /packages/hub (#152) #420

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [20, 22]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Install native build tools (Linux)
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install -y build-essential python3
- uses: pnpm/action-setup@v5
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Run tests with coverage
run: pnpm test:coverage
- name: Upload coverage to Codecov
if: runner.os == 'Linux' && matrix.node-version == 22
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittests
fail_ci_if_error: false
- run: pnpm build
- name: Verify publishable
run: node scripts/verify-publishable.mjs