return index.html when doc page is landed on before home page #68
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 | |
on: [push, pull_request] | |
jobs: | |
build: | |
defaults: | |
run: | |
working-directory: web/src/main/javascript | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 20.12.2 | |
- name: Install node modules | |
run: npm install | |
- name: Run ESLint | |
run: npm run lint |