Skip to content

chore(deps): update dependency vite to v5.4.9 #580

chore(deps): update dependency vite to v5.4.9

chore(deps): update dependency vite to v5.4.9 #580

Workflow file for this run

name: CI test
on:
pull_request:
branches:
- main
paths:
- 'src/**'
- 'package.json'
- 'package-lock.json'
- 'tsconfig.json'
- 'tsconfig.app.json'
- 'tsconfig.node.json'
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: rm package-lock.json
run: rm package-lock.json
- name: npm install
run: npm install
- name: Lint
run: npm run lint
- name: Typed Check
run: npm run tscheck
- name: build check
run: npm run build
env:
CI: true