Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.

deps(npm)(deps): bump vite from 7.3.1 to 8.0.3 #106

deps(npm)(deps): bump vite from 7.3.1 to 8.0.3

deps(npm)(deps): bump vite from 7.3.1 to 8.0.3 #106

Workflow file for this run

name: Build & Lint
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions: {} # lock everything by default (least-privilege)
jobs:
build-lint:
name: Build & Lint
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Install Node.js
uses: actions/setup-node@v6
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Format
run: npm run format
- name: Add build summary
run: |
echo "## Tutorial build & lint result" >> $GITHUB_STEP_SUMMARY
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY