Skip to content

Commit da96ca7

Browse files
committed
chore: update CI workflow, gitignore, and dependencies for native video thumbnails
1 parent ab1096f commit da96ca7

File tree

3 files changed

+304
-20
lines changed

3 files changed

+304
-20
lines changed

.github/workflows/bun-ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,4 @@ jobs:
5353

5454
- name: Run tests
5555
working-directory: apps/web
56-
run: echo "No tests implemented yet"
57-
continue-on-error: true
56+
run: bun test:run

.gitignore

Lines changed: 64 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,79 @@
11
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
22

3-
# dependencies
4-
/apps/web/node_modules
3+
# Dependencies
4+
node_modules/
5+
/apps/web/node_modules/
6+
/packages/*/node_modules/
57

6-
# next.js
8+
# Build outputs
79
/apps/web/.next/
810
/apps/web/out/
11+
/apps/web/dist/
12+
/apps/web/build/
13+
*.tsbuildinfo
14+
tsconfig.tsbuildinfo
915

10-
# debug
11-
/apps/web/npm-debug.log*
16+
# Testing and Coverage
17+
/apps/web/coverage/
18+
coverage/
19+
*.lcov
20+
.nyc_output/
1221

13-
# env files (can opt-in for committing if needed)
22+
# Debug and Logs
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
pnpm-debug.log*
27+
lerna-debug.log*
28+
*.log
29+
30+
# Environment files
31+
.env*
32+
!.env.example
1433
/apps/web/.env*
1534
!/apps/web/.env.example
1635

17-
# typescript
36+
# TypeScript
1837
/apps/web/next-env.d.ts
38+
*.d.ts.map
1939

20-
# asdf version management
21-
.tool-versions
40+
# Development tools
41+
.turbo/
42+
.vscode/
43+
.idea/
44+
*.swp
45+
*.swo
46+
*~
2247

23-
node_modules
24-
.cursorignore
25-
.turbo
48+
# OS generated files
49+
.DS_Store
50+
.DS_Store?
51+
._*
52+
.Spotlight-V100
53+
.Trashes
54+
ehthumbs.db
55+
Thumbs.db
56+
57+
# Package manager files
58+
bun.lockb
59+
yarn.lock
60+
package-lock.json
61+
pnpm-lock.yaml
2662

27-
*.env
63+
# Temporary and cache files
64+
.cache/
65+
.temp/
66+
.tmp/
67+
*.tmp
68+
*.temp
2869

29-
# cursor
30-
bun.lockb
70+
# Documentation and task files
71+
Tasks_*.md
72+
.augment/
73+
74+
# Version management
75+
.tool-versions
76+
77+
# Editor and IDE
78+
.cursorignore
79+
.cursor/

0 commit comments

Comments
 (0)