瀏覽代碼

Remove lint

We have to investigate on this, because after the Typescript integration is not working anymore, so I have to deepen how we can configure the usage with TypesScript.
Giovanni Giordano 5 年之前
父節點
當前提交
a7516f6cb8
共有 2 個文件被更改,包括 3 次插入5 次删除
  1. 2 3
      .github/workflows/nodejs.yml
  2. 1 2
      package.json

+ 2 - 3
.github/workflows/nodejs.yml

@@ -3,7 +3,7 @@ name: Node CI
 on: [push]
 
 jobs:
-  build:
+  test:
 
     runs-on: ubuntu-latest
 
@@ -12,10 +12,9 @@ jobs:
     - uses: actions/setup-node@v1
       with:
         node-version: 12.x
-    - name: npm install, build, and test
+    - name: npm install and test
       run: |
         npm ci
-        npm run lint
         npm test
       env:
         CI: true

+ 1 - 2
package.json

@@ -23,8 +23,7 @@
     "start": "react-scripts start",
     "build": "react-scripts build",
     "test": "react-scripts test --env=jsdom",
-    "eject": "react-scripts eject",
-    "lint": "eslint src"
+    "eject": "react-scripts eject"
   },
   "browserslist": [
     ">0.2%",