Skip to content

build(deps): bump vite from 6.3.2 to 7.1.12 #2145

build(deps): bump vite from 6.3.2 to 7.1.12

build(deps): bump vite from 6.3.2 to 7.1.12 #2145

Workflow file for this run

name: Test
on:
push:
branches:
- main
tags:
- '**'
pull_request:
branches:
- main
workflow_dispatch:
permissions: {}
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x, 24.x]
permissions:
contents: read
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
show-progress: false
- uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
name: Install pnpm
with:
run_install: false
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version: ${{ matrix.node-version }}
- name: Install Packages
run: pnpm i
- run: pnpm build
- run: pnpm lint
- run: pnpm test
- name: Coveralls
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b # v2.3.6
with:
flag-name: coverage for node:${{ matrix.node-version }}
files: 'packages/*/coverage/clover.xml'
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel: true
- name: Setup Go to check license
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
go-version: '1.25'
- name: Check license
run: go install github.com/google/addlicense@latest
- run: pnpm check-license
post-tests:
runs-on: ubuntu-latest
needs: test
permissions:
contents: read
steps:
- name: Close coverage report
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b # v2.3.6
with:
parallel-finished: true