promise leak #43
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: | |
jobs: | |
check_eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install modules | |
run: | | |
sudo npm install -g eslint | |
npm install | |
- run: eslint lib --ext .js,.jsx,.ts,.tsx | |
- run: npm test |