Bump ws in the npm_and_yarn group across 1 directory #456
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: Suggester CI | |
on: [push, pull_request] | |
jobs: | |
lint: | |
name: ESLint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout to repository | |
uses: actions/checkout@v2 | |
- name: Configure files | |
run: mv config.json.example config.json | mv .env.example .env | |
- name: Setup Node.js v12 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12 | |
- name: Install dependencies | |
run: npm ci | |
- name: Run ESLint | |
uses: icrawl/action-eslint@v1 | |
with: | |
custom-glob: . |