Skip to content

Commit

Permalink
Check Files during Install (#9182)
Browse files Browse the repository at this point in the history
  • Loading branch information
Timer authored Oct 23, 2019
1 parent 9581d8a commit f211b35
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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

0 comments on commit f211b35

Please sign in to comment.