Skip to content

Merge pull request #91 from ekvedaras/dependabot/npm_and_yarn/vite-3.… #43

Merge pull request #91 from ekvedaras/dependabot/npm_and_yarn/vite-3.…

Merge pull request #91 from ekvedaras/dependabot/npm_and_yarn/vite-3.… #43

Workflow file for this run

name : Linters
on :
push :
branches :
- main
paths :
- '**.js'
- '**.ts'
- '**.vue'
- 'yarn.lock'
- '.github/workflows/lint.yml'
pull_request :
paths :
- '**.js'
- '**.ts'
- '**.vue'
- 'package-lock.json'
- '.github/workflows/lint.yml'
defaults :
run :
shell : 'bash'
jobs :
eslint :
runs-on : ubuntu-latest
steps :
- uses : actions/checkout@v2
- uses : actions/setup-node@v2
with :
node-version : 16 # Need for npm >=7.7
cache : 'yarn'
# TODO: Install not all dependencies, but only those required for this workflow
- name : Install dependencies
run : yarn install
- run : yarn run lint