Skip to content

Commit dd69948

Browse files
yevgenypatsdj-stormtrooperanton-kuptsovnkabardinIlya Kuznetsov
authored
feat: Add website, docs and blog to our main repo (#1159)
* feat: Add website, docs and blog to our main repo As we move to mono repo our docs should reside with our code this will also help auto generate CLI reference and table reference without commiting in another repo and keeping everything in sync. * chore: Fix blogs build + gitignore for Nextjs project (#1162) * fix: Fix blog build * Gitignore for next project * fix(website): Fix logos of customers on the main page (#1164) * fix(website): Fix logos of customers on the main page * fix(website): fix Autodesk logo color * feat: add new customers logos * feat: Add brand logo page to website (#1182) * feat: Nextra blogs (#1183) * feat: Nextra blogs * feat:: Title for all the blogs + new blog * fix: Language mismatch * feat: Website docs (#1193) * feat: Nextra blogs * feat:: Title for all the blogs + new blog * fix: Language mismatch * feat: New Tabs components * feat: Updating pages Part 1 * feat: Language mismatches * feat: Info/warning blocks * Toml language mismatch * Docs pages part2 * Formatter * feat: Nextra update, cleanup (#1213) * Nextra update + cleanup * fix: Fix blog build * chore: Remove unnecessary comments from Vercel * feat: Add integration logos (#1181) * Add integration logos * Correct spacing for integrations * Align integration header to center on mobile too * feat: Add infinite slideshow of users logos (#1225) * fix(website): Fix logos of customers on the main page * fix(website): fix Autodesk logo color * feat: add new customers logos * feat: Add infinite slideshow of customers logos * feat: polish integrations on landing (#1229) * Polish integrations block * Update subtext mobile style * fix: Update Nextra theme config (#1219) Update favicon * feat: Add website subscribe (#1309) * feat: Subscribe * feat: Subscribe * remove code duplication * fix: Remove unrelated logo * fix(website): OG image fix (#1306) * fix(website): Fix logos of customers on the main page * fix(website): fix Autodesk logo color * fix: Update Nextra theme config (#1219) Update favicon * fix(website): Fix logos of customers on the main page * fix: Update Nextra theme config (#1219) Update favicon * feat(website): add og images to the _document * feat(website): Add hub links to integrations logos (#1324) * fix(website): Fix logos of customers on the main page * fix(website): fix Autodesk logo color * fix: Update Nextra theme config (#1219) Update favicon * fix(website): Fix logos of customers on the main page * fix: Update Nextra theme config (#1219) Update favicon * feat(website): add hub links to integrations logos * Delete release-pr.yml * fix(website): fix features cards content on the main page (#1356) * fix: Subscribe button bg + Image compression + File Size Linter (#1332) * fix: Subscribe button background * Compressed images * File size checker * Disable autocomplete * Fix workflow * Fix workflow * Test * More specific text * Restoring defaults * Remove junk * Delete release-pr.yml * Update check_file_size.yml * Delete LICENSE Co-authored-by: Ilya Kuznetsov <ilya92k@gmail.com> Co-authored-by: Anton Kuptsov <39290991+anton-kuptsov@users.noreply.github.com> Co-authored-by: Nikita Kabardin <nikita@kabardin.com> Co-authored-by: Ilya Kuznetsov <ilya@cloudquery.io> Co-authored-by: Erez Rokah <erezrokah@users.noreply.github.com>
1 parent 2c46e9e commit dd69948

345 files changed

Lines changed: 16272 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Check image sizes
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- "**.jpg"
7+
- "**.jpeg"
8+
- "**.png"
9+
- "**.webp"
10+
11+
jobs:
12+
check-files-size:
13+
runs-on: ubuntu-latest
14+
timeout-minutes: 5
15+
steps:
16+
- uses: actions/checkout@v3
17+
18+
- name: Check file sizes
19+
id: should-run
20+
shell: bash
21+
run: |
22+
set -o pipefail
23+
24+
echo Checking files with size over ${LIMIT}kB
25+
26+
IMAGES=$(find . \
27+
-iname '*.png' -size +${LIMIT}k -o \
28+
-iname '*.jpg' -size +${LIMIT}k -o \
29+
-iname '*.jpeg' -size +${LIMIT}k)
30+
31+
if [ -z "$IMAGES" ]; then
32+
echo 'No large files found'
33+
else
34+
echo 'Use https://tinypng.com/ to compress images:'
35+
du -sh $IMAGES
36+
exit 1;
37+
fi;
38+
39+
env:
40+
LIMIT: 250
-284 KB
Loading
-89.3 KB
Loading
-149 KB
Loading
-456 KB
Loading
-477 KB
Loading
-455 KB
Loading
-380 KB
Loading
-398 KB
Loading
-410 KB
Loading

0 commit comments

Comments
 (0)