Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check Files during Install #9182

Merged
merged 1 commit into from
Oct 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ commands:
steps:
- run:
name: Installing Dependencies
command: yarn install --frozen-lockfile
command: yarn install --frozen-lockfile --check-files
yarn_lint:
steps:
- run:
Expand All @@ -56,7 +56,7 @@ commands:
- run:
name: Run All Tests
command: |
yarn check && node run-tests.js $(
node run-tests.js $(
circleci tests glob "test/**/*.test.*" | \
circleci tests split
)
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ steps:
displayName: Cache Yarn packages

- script: |
yarn --frozen-lockfile --check-files
yarn install --frozen-lockfile --check-files
displayName: 'Install dependencies'

- script: |
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"dev": "lerna run build --stream --parallel",
"dev2": "while true; do yarn --check-files && yarn dev; done",
"testonly": "jest",
"testall": "yarn check && yarn run testonly -- --ci --reporters=default --reporters=jest-junit --forceExit --runInBand",
"testall": "yarn run testonly -- --ci --reporters=default --reporters=jest-junit --forceExit --runInBand",
"pretest": "yarn run lint",
"git-reset": "git reset --hard HEAD",
"git-clean": "git clean -d -x -e node_modules -e packages -f",
Expand Down