Skip to content

Update @vitejs/plugin-vue 5.1.4 → 5.2.0 (minor) #1831

Update @vitejs/plugin-vue 5.1.4 → 5.2.0 (minor)

Update @vitejs/plugin-vue 5.1.4 → 5.2.0 (minor) #1831

Workflow file for this run

name: Linting
on:
- push
- pull_request
jobs:
eslint:
name: EsLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Export node version
id: node_version
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
- name: Setup node
uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
- name: Install
run: npm ci --legacy-peer-deps
- name: Run npm lint
run: npm run lint
- name: Check prettier
run: npm run prettier-check