Skip to content

Commit

Permalink
Check for large files in CircleCI (#1142)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-white committed May 22, 2024
1 parent 30b76db commit fecb067
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ jobs:

steps:
- checkout
- run:
name: Check for large files
command: |
set +e
find . -size +1000000c -not -path './.git/*' | grep .
[[ $? -eq 1 ]]
- run: make check-file-headers
- run: npm ci --legacy-peer-deps
- run: node lib/bin/create-docker-databases.js
Expand Down

0 comments on commit fecb067

Please sign in to comment.