Skip to content

build(deps): bump vite from 7.3.1 to 7.3.2 #11

build(deps): bump vite from 7.3.1 to 7.3.2

build(deps): bump vite from 7.3.1 to 7.3.2 #11

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '24'
- run: npm ci
- run: npm run lint
- run: npm test
- run: npm run coverage
- uses: coverallsapp/github-action@v2
with:
file: ./coverage/lcov.info
- name: Build Library
run: npm run build
- uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
retention-days: 1