Skip to content

Commit 93f8cef

Browse files
committed
fix
1 parent 46c8f96 commit 93f8cef

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/CI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
node-version: 'lts/*'
2323
- name: Install Packages
24-
run: npm install && cd test/fixtures/eslint && npm install
24+
run: npm install
2525
- name: Lint
2626
run: npm run -s lint
2727

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -311,9 +311,8 @@ Welcome contributing!
311311

312312
Please use GitHub's Issues/PRs.
313313

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.
315315
The `npm install` command installs dependencies.
316-
The `npm run setup` command initializes ESLint as git submodules for tests.
317316

318317
### Development Tools
319318

@@ -322,6 +321,5 @@ The `npm run setup` command initializes ESLint as git submodules for tests.
322321
- `npm run coverage` shows the coverage result of `npm test` command with the default browser.
323322
- `npm run clean` removes the temporary files which are created by `npm test` and `npm run build`.
324323
- `npm run lint` runs ESLint.
325-
- `npm run setup` setups submodules to develop.
326324
- `npm run update-fixtures` updates files in `test/fixtures/ast` directory based on `test/fixtures/ast/*/source.vue` files.
327325
- `npm run watch` runs `build`, `update-fixtures`, and tests with `--watch` option.

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@
7272
"codecov": "codecov",
7373
"coverage": "opener ./coverage/lcov-report/index.html",
7474
"lint": "eslint src test package.json",
75-
"setup": "git submodule update --init && cd test/fixtures/eslint && npm install",
7675
"pretest": "run-s build lint",
7776
"test": "npm run -s test:mocha",
7877
"test:mocha": "mocha --require ts-node/register \"test/*.js\" --reporter dot --timeout 60000",

0 commit comments

Comments
 (0)