Updated dependencies. #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
run-linters: | |
name: Run linters | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Install linters | |
run: npm install --no-package-lock eslint eslint-config-prettier eslint-plugin-compat eslint-plugin-jsdoc eslint-plugin-prettier @typescript-eslint/eslint-plugin @typescript-eslint/parser | |
- name: Run linters | |
run: npm run lint |