This repository has been archived by the owner on Jul 17, 2024. It is now read-only.
Bump next from 13.5.6 to 14.1.1 #3185
Workflow file for this run
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" |