This repository has been archived by the owner on Jul 17, 2024. It is now read-only.
Update dependency @types/node to v18.19.33 #3195
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 | |
jobs: | |
run-linters: | |
name: Run ESLint checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v3 | |
- name: Install Node.js dependencies | |
run: npm ci | |
- name: Run ESLint | |
uses: wearerequired/[email protected] | |
with: | |
eslint: true | |
eslint_extensions: "ts,tsx" | |
stylelint: true | |
stylelint_extensions: "css,scss" |