File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- export type TeamMemberRole =
2- | 'reader'
3- | 'collaborator'
4- | 'manager'
5- | 'owner'
6- | undefined
1+ export type TeamMemberRole
2+ = | 'reader'
3+ | 'collaborator'
4+ | 'manager'
5+ | 'owner'
6+ | undefined
77
88export type ProjectType = 'design' | 'development' | 'marketing' | undefined
99
Original file line number Diff line number Diff line change @@ -23,12 +23,12 @@ export interface CalendarSettings {
2323 weekStartsOn ?: 0 | 1 | 2 | 3 | 4 | 5 | 6
2424}
2525
26- export type EventCategory =
27- | 'customer'
28- | 'internal'
29- | 'team'
30- | 'personal'
31- | 'none'
26+ export type EventCategory
27+ = | 'customer'
28+ | 'internal'
29+ | 'team'
30+ | 'personal'
31+ | 'none'
3232export interface EventCategoryTheme {
3333 name : string
3434 color : string
Original file line number Diff line number Diff line change 1111
1212 steps :
1313 # Checkout action retreive the source (git clone)
14- - uses : actions/checkout@v4
14+ - uses : actions/checkout@v5
1515 with :
1616 fetch-depth : 0 # needed to retreive all git history
1717
2121 # Setup pnpm with cache
2222 - uses : actions/setup-node@v4
2323 with :
24- node-version : 22
24+ node-version : 24
2525 cache : pnpm
2626
2727 # Compute tag and capitalized product name
You can’t perform that action at this time.
0 commit comments