Skip to content

chore(deps-dev): bump vite from 5.0.0 to 5.0.5 #125

chore(deps-dev): bump vite from 5.0.0 to 5.0.5

chore(deps-dev): bump vite from 5.0.0 to 5.0.5 #125

Workflow file for this run

name: Test CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Cache core files
uses: actions/cache@v3
id: cache-core
with:
path: |
core/*
!core/live2d.d.ts
key: ${{ runner.os }}-core-${{ hashFiles('scripts/setup.js') }}
- run: npm ci
- if: steps.cache-core.outputs.cache-hit != 'true'
run: npm run setup
- uses: GabrielBB/xvfb-action@v1.0
with:
run: npm run test:ci
- uses: actions/upload-artifact@v3
if: failure()
with:
name: diff-images
path: test/**/__image_snapshots__/__diff_output__/*
if-no-files-found: ignore