added default value to template_name in send_email_to_admin #339
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 Linter (eslint) | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install modules | |
working-directory: ./src-frontend | |
run: npm i | |
- name: Run ESLint | |
working-directory: ./src-frontend | |
run: npm run lint |