File tree 3 files changed +2
-5
lines changed
3 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 21
21
with :
22
22
node-version : ' lts/*'
23
23
- name : Install Packages
24
- run : npm install && cd test/fixtures/eslint && npm install
24
+ run : npm install
25
25
- name : Lint
26
26
run : npm run -s lint
27
27
Original file line number Diff line number Diff line change @@ -311,9 +311,8 @@ Welcome contributing!
311
311
312
312
Please use GitHub's Issues/PRs.
313
313
314
- If you want to write code, please execute ` npm install && npm run setup ` after you cloned this repository.
314
+ If you want to write code, please execute ` npm install ` after you cloned this repository.
315
315
The ` npm install ` command installs dependencies.
316
- The ` npm run setup ` command initializes ESLint as git submodules for tests.
317
316
318
317
### Development Tools
319
318
@@ -322,6 +321,5 @@ The `npm run setup` command initializes ESLint as git submodules for tests.
322
321
- ` npm run coverage ` shows the coverage result of ` npm test ` command with the default browser.
323
322
- ` npm run clean ` removes the temporary files which are created by ` npm test ` and ` npm run build ` .
324
323
- ` npm run lint ` runs ESLint.
325
- - ` npm run setup ` setups submodules to develop.
326
324
- ` npm run update-fixtures ` updates files in ` test/fixtures/ast ` directory based on ` test/fixtures/ast/*/source.vue ` files.
327
325
- ` npm run watch ` runs ` build ` , ` update-fixtures ` , and tests with ` --watch ` option.
Original file line number Diff line number Diff line change 72
72
"codecov" : " codecov" ,
73
73
"coverage" : " opener ./coverage/lcov-report/index.html" ,
74
74
"lint" : " eslint src test package.json" ,
75
- "setup" : " git submodule update --init && cd test/fixtures/eslint && npm install" ,
76
75
"pretest" : " run-s build lint" ,
77
76
"test" : " npm run -s test:mocha" ,
78
77
"test:mocha" : " mocha --require ts-node/register \" test/*.js\" --reporter dot --timeout 60000" ,
You can’t perform that action at this time.
0 commit comments