Skip to content

build(deps): bump vuetify from 3.4.3 to 3.7.2 in /client #485

build(deps): bump vuetify from 3.4.3 to 3.7.2 in /client

build(deps): bump vuetify from 3.4.3 to 3.7.2 in /client #485

Workflow file for this run

name: Vue lint
on:
push:
paths:
- client/**
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [21.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
cache-dependency-path: ./client/yarn.lock
- name: client
run: cd client
- name: Yarn Install
run: cd client && yarn install
- name: ESLint
run: cd client && yarn lint