Skip to content

Merge pull request #1252 from LeChatErrant/dependabot/npm_and_yarn/li… #3213

Merge pull request #1252 from LeChatErrant/dependabot/npm_and_yarn/li…

Merge pull request #1252 from LeChatErrant/dependabot/npm_and_yarn/li… #3213

Workflow file for this run

name: Lint
on:
push:
branches-ignore:
- gh-pages
paths:
- '**.ts'
- package.json
- package-lock.json
- tsconfig.json
- .eslintrc.js
- .github/workflows/lint.yml
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Install dependencies
run: npm install
- name: Analyze the coding style
run: npm run lint:ci