Merge pull request #1212 from jinzo/autocomplete-instead-of-single-se… #487
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: Modern App Lint | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- modern/** | |
pull_request: | |
branches: | |
- master | |
paths: | |
- modern/** | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
cache: npm | |
cache-dependency-path: modern/package-lock.json | |
- run: npm ci | |
working-directory: modern | |
- run: npm run lint | |
working-directory: modern |