fix: unrecoverable error page doesn't include logo or domain name (#3… #1
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: Javascript Linting | |
"on": | |
- push | |
- pull_request | |
jobs: | |
javascript_lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run ESLint to check Javascript files | |
run: | |
make eslint | |
javascript_fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Prettier to check Javascript files | |
run: | |
make prettier | |