File tree Expand file tree Collapse file tree 3 files changed +304
-20
lines changed Expand file tree Collapse file tree 3 files changed +304
-20
lines changed Original file line number Diff line number Diff line change 53
53
54
54
- name : Run tests
55
55
working-directory : apps/web
56
- run : echo "No tests implemented yet"
57
- continue-on-error : true
56
+ run : bun test:run
Original file line number Diff line number Diff line change 1
1
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2
2
3
- # dependencies
4
- /apps /web /node_modules
3
+ # Dependencies
4
+ node_modules /
5
+ /apps /web /node_modules /
6
+ /packages /* /node_modules /
5
7
6
- # next.js
8
+ # Build outputs
7
9
/apps /web /.next /
8
10
/apps /web /out /
11
+ /apps /web /dist /
12
+ /apps /web /build /
13
+ * .tsbuildinfo
14
+ tsconfig.tsbuildinfo
9
15
10
- # debug
11
- /apps /web /npm-debug.log *
16
+ # Testing and Coverage
17
+ /apps /web /coverage /
18
+ coverage /
19
+ * .lcov
20
+ .nyc_output /
12
21
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
14
33
/apps /web /.env *
15
34
! /apps /web /.env.example
16
35
17
- # typescript
36
+ # TypeScript
18
37
/apps /web /next-env.d.ts
38
+ * .d.ts.map
19
39
20
- # asdf version management
21
- .tool-versions
40
+ # Development tools
41
+ .turbo /
42
+ .vscode /
43
+ .idea /
44
+ * .swp
45
+ * .swo
46
+ * ~
22
47
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
26
62
27
- * .env
63
+ # Temporary and cache files
64
+ .cache /
65
+ .temp /
66
+ .tmp /
67
+ * .tmp
68
+ * .temp
28
69
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 /
You can’t perform that action at this time.
0 commit comments