Merge pull request #4 from cse110-sp24-group25/testing #2
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: Linting | |
on: push | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install modules | |
run: yarn | |
- name: Run ESLint for javascript | |
run: eslint . --ext .js | |
- name: Run stylelint for css | |
uses: actions-hub/stylelint@master |