added support for sending to smtp (#51) #2
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 | |
on: | |
push: | |
branches: ['*'] | |
pull_request: | |
branches: ['*'] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: NPM Install | |
run: | | |
npm i | |
- name: Add config | |
run: cp ".github/workflows/lint.env" .env | |
- name: TypeScript/Svelte Check | |
run: | | |
npm list --depth=0 typescript | |
npm run check | |
- name: ESLint | |
run: | | |
npm list --depth=0 eslint eslint-plugin-import prettier | |
npm run lint |