More detail on final FADE chatcard #960
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: Check PRs conform to code format and lint standards | |
on: pull_request | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install | |
run: npm ci | |
- name: Is it pretty? | |
run: npm run prettier | |
- name: Any eslint issues? | |
run: npm run lint |