Skip to content

Update README.md

Update README.md #26

Workflow file for this run

name: Check lint
on:
push:
branches: [ "main", "develop" ]
pull_request:
branches:
- main
- develop
- feature/**
- hotfix/**
- release/**
- refactor/**
paths:
- '**.vue'
- '**.js'
- '**.ts'
- '.github/workflows/lint.yml'
- 'package-lock.json'
jobs:
check-eslint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Run ESLint - node version ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint