Skip to content

init History tab

init History tab #644

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