feat(ci): add GitHub actions and allow svelte/no-at-html-tags
#9
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: eslint check | |
on: ["push", "pull_request"] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install modules | |
run: npm install | |
- name: Show environment info | |
run: npm run lint --env-info | |
- name: Run ESLint | |
run: npm run lint |