Bump eslint-plugin-vue from 8.2.0 to 10.5.0 in /Website #268
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |