mirror of
https://github.com/cheveguerra/whatsapp-web.js.git
synced 2026-04-18 11:39:14 +00:00
25 lines
444 B
YAML
25 lines
444 B
YAML
name: Lint
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
eslint:
|
|
name: eslint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: install node v12
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 12
|
|
- name: npm install
|
|
run: npm install
|
|
- name: eslint
|
|
uses: icrawl/action-eslint@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
job-name: eslint
|