Skip to content

Bump eslint-plugin-vue from 8.2.0 to 10.5.0 in /Website #268

Bump eslint-plugin-vue from 8.2.0 to 10.5.0 in /Website

Bump eslint-plugin-vue from 8.2.0 to 10.5.0 in /Website #268

Workflow file for this run

# This workflow lints the code in /Website, if any was committed
name: Website Lint
on:
push:
branches:
- main
paths:
- Website/**
pull_request:
branches:
- main
paths:
- Website/**
jobs:
weblint:
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: npm install
working-directory: Website
- name: Run lint
run: npm run lint
working-directory: Website