Skip to content

Bump vite from 8.0.14 to 8.0.16 in the npm_and_yarn group across 1 directory #80

Bump vite from 8.0.14 to 8.0.16 in the npm_and_yarn group across 1 directory

Bump vite from 8.0.14 to 8.0.16 in the npm_and_yarn group across 1 directory #80

Workflow file for this run

name: Lint
on:
push:
branches:
- "main"
pull_request:
workflow_dispatch:
env:
FORCE_COLOR: 2
NODE: 24
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Clone repository
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE }}
cache: npm
- name: Install npm dependencies
run: npm ci
- name: Lint
run: npm run lint