Browse Source

try different lint workflow

Alexander Rose 5 years ago
parent
commit
61e26df637
1 changed files with 13 additions and 7 deletions
  1. 13 7
      .github/workflows/lint.yml

+ 13 - 7
.github/workflows/lint.yml

@@ -1,12 +1,18 @@
-name: Lint
-
-on: pull_request
+on:
+  push:
+  pull_request:
 
 jobs:
   eslint:
+    name: eslint
     runs-on: ubuntu-latest
     steps:
-      - uses: actions/checkout@v1
-      - uses: hallee/eslint-action@master
-        with:
-          repo-token: ${{secrets.GITHUB_TOKEN}}
+    - uses: actions/checkout@v1
+    - name: install node v12
+      uses: actions/setup-node@v1
+      with:
+        node-version: 12
+    - name: yarn install
+      run: yarn install
+    - name: eslint
+      uses: icrawl/action-eslint@v1