Skip to content

Bump vite from 6.2.0 to 6.2.7 in /jmaxml-json-types in the npm_and_yarn group across 1 directory #20

Bump vite from 6.2.0 to 6.2.7 in /jmaxml-json-types in the npm_and_yarn group across 1 directory

Bump vite from 6.2.0 to 6.2.7 in /jmaxml-json-types in the npm_and_yarn group across 1 directory #20

Workflow file for this run

name: Test
on:
push:
branches:
- main
tags:
- "*"
pull_request:
env:
CARGO_TERM_COLOR: always
permissions:
contents: read
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
steps:
- uses: actions/checkout@v4
- run: npm i -g --force corepack && corepack enable
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
cache-dependency-path: 'jmaxml-json-types/pnpm-lock.yaml'
- name: Rustup
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Test
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
- name: Test jmaxml-json-types
run: pnpm install && npm run test
working-directory: ./jmaxml-json-types
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
fail_ci_if_error: true