Skip to content

Commit

Permalink
Check for large files in CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-white committed May 8, 2024
1 parent b9c50ee commit a253df5
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 +1Mc -not -path './.git/*' | grep .
(( $? == 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 a253df5

Please sign in to comment.