chore(deps): update dependency eslint-plugin-promise to v6 #176
Workflow file for this run
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: CI | |
on: | |
push: | |
pull_request: | |
env: | |
NODE: 10.x | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "${{ env.NODE }}" | |
- name: Install npm dependencies | |
run: npm install | |
- name: Lint | |
run: npm run lint | |
- name: Run tests | |
run: npm test |