Skip to content

Bump vite from 5.4.10 to 5.4.14 in /example #9

Bump vite from 5.4.10 to 5.4.14 in /example

Bump vite from 5.4.10 to 5.4.14 in /example #9

Workflow file for this run

---
name: Pr
"on":
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
Check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "lts"
- name: lint
run: npx eslint . --ext .ts
- name: unit test
run: npm run test
- name: build
run: npm run build