Skip to content

chore(deps-dev): bump vite from 6.2.1 to 6.2.2 #58

chore(deps-dev): bump vite from 6.2.1 to 6.2.2

chore(deps-dev): bump vite from 6.2.1 to 6.2.2 #58

Workflow file for this run

name: Test
on:
push:
branches:
- main
paths-ignore:
- '**.md'
- '**.yml'
pull_request:
branches:
- main
# Cancel in progress workflows on pull_requests.
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup node
uses: actions/[email protected]
with:
node-version-file: 'package.json'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Code quality
run: npm run lint
- name: Build
run: npm run build