Skip to content

chore(deps): upgrade to vite 6.0.0 #1

chore(deps): upgrade to vite 6.0.0

chore(deps): upgrade to vite 6.0.0 #1

Workflow file for this run

---
name: ci
on:
pull_request:
push:
branches:
- main
- master
- "releases/*"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
ci:
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
folder:
- cdviz-collector
# - cdviz-db
- charts
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
steps:
- uses: actions/checkout@v4
- name: check changed files
uses: tj-actions/changed-files@v45
id: changed-files
with:
files: |
${{ matrix.folder }}/**
- name: log
if: steps.changed-files.outputs.any_changed != 'true'
run: echo "::notice ::no changed files on ${{ matrix.folder }} - skipping"
- uses: mozilla-actions/sccache-action@v0.0.6
if: steps.changed-files.outputs.any_changed == 'true'
- uses: jdx/mise-action@v2
if: steps.changed-files.outputs.any_changed == 'true'
with:
experimental: true
- run: mise install
if: steps.changed-files.outputs.any_changed == 'true'
shell: bash
working-directory: ${{ matrix.folder }}
- run: task ci
if: steps.changed-files.outputs.any_changed == 'true'
shell: bash
working-directory: ${{ matrix.folder }}
- run: ${SCCACHE_PATH} --show-stats
if: steps.changed-files.outputs.any_changed == 'true'
shell: bash