Sfoglia il codice sorgente

Rename check script

Kirk Trombley 4 anni fa
parent
commit
f89cabcb94
2 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 1 1
      .drone.yml
  2. 1 1
      client/package.json

+ 1 - 1
.drone.yml

@@ -11,7 +11,7 @@ steps:
   commands:
   - cd client
   - yarn install
-  - yarn check
+  - yarn validate
   - yarn test:ci
   - yarn build
   - mv build/* /build/

+ 1 - 1
client/package.json

@@ -22,7 +22,7 @@
     "format:fix": "prettier --write src/",
     "lint": "eslint --report-unused-disable-directives 'src/**/*.js{,x}'",
     "lint:fix": "yarn lint --fix",
-    "check": "yarn format && yarn lint",
+    "validate": "yarn format && yarn lint",
     "fix": "yarn format:fix && yarn lint:fix",
     "test": "react-scripts test",
     "test:ci": "CI=true yarn test",