Removed broken link #14
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 and validate | |
on: | |
pull_request: | |
branches: [master, main] | |
jobs: | |
lint-and-validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- run: npm install | |
- run: npm run format:check | |
- run: npm run lint:ls | |
- run: npm run lint:md | |
- run: npm run lint:js |