Skip to content

Commit 816c7d9

Browse files
authored
Merge pull request #933 from trycompai/main
[comp] Production Deploy
2 parents a1f7111 + 04b5cf2 commit 816c7d9

978 files changed

Lines changed: 16440 additions & 23033 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.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
name: Report a bug
33
about: Any issues with the platform, unexpected behavior, etc.
4-
title: ""
5-
labels: ["🐛 bug"]
6-
assignees: ""
4+
title: ''
5+
labels: ['🐛 bug']
6+
assignees: ''
77
---
88

99
Found a bug? Please fill out the sections below. 👍

.github/actions/bun-install/action.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
# - node_modules directory #
77
########################################################################################
88

9-
name: "Bun install"
10-
description: "Run bun install with cache enabled"
9+
name: 'Bun install'
10+
description: 'Run bun install with cache enabled'
1111
inputs:
1212
node_version:
13-
description: "Node.js version to use"
13+
description: 'Node.js version to use'
1414
required: false
1515
default: v20.x
1616

1717
runs:
18-
using: "composite"
18+
using: 'composite'
1919
steps:
2020
- name: Use Node ${{ inputs.node_version }}
2121
uses: buildjet/setup-node@v4
@@ -41,7 +41,7 @@ runs:
4141
id: bun-nm-cache
4242
uses: buildjet/cache@v4
4343
with:
44-
path: "**/node_modules/"
44+
path: '**/node_modules/'
4545
key: ${{ runner.os }}-bun-nm-cache-${{ hashFiles('bun.lockb', 'package.json') }}
4646

4747
- name: Install dependencies

.github/actions/dangerous-git-checkout/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Dangerous git Checkout
2-
description: "Git Checkout from PR code so we can run checks from forks"
2+
description: 'Git Checkout from PR code so we can run checks from forks'
33
runs:
4-
using: "composite"
4+
using: 'composite'
55
steps:
66
- name: Checkout repo
77
uses: actions/checkout@v4

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version: 2
22
updates:
33
- package-ecosystem: npm
4-
directory: "/"
4+
directory: '/'
55
schedule:
66
interval: daily
7-
target-branch: "main"
7+
target-branch: 'main'
88
open-pull-requests-limit: 3

.github/workflows/auto-pr-to-main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ jobs:
3232
uses: repo-sync/pull-request@v2
3333
with:
3434
github_token: ${{ secrets.GITHUB_TOKEN }}
35-
destination_branch: "main"
36-
pr_title: "[dev] [${{ github.actor }}] ${{ github.ref_name }}"
37-
pr_label: "automated-pr"
35+
destination_branch: 'main'
36+
pr_title: '[dev] [${{ github.actor }}] ${{ github.ref_name }}'
37+
pr_label: 'automated-pr'
3838
pr_body: |
3939
This is an automated pull request to merge ${{ github.ref_name }} into dev.
4040
It was created by the [Auto Pull Request] action.

.github/workflows/auto-pr-to-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
uses: repo-sync/pull-request@v2
2727
continue-on-error: true
2828
with:
29-
destination_branch: "release"
29+
destination_branch: 'release'
3030
github_token: ${{ secrets.GITHUB_TOKEN }}
31-
pr_label: "prod-deploy,automated-pr"
32-
pr_title: "[${{ github.event.repository.name }}] Production Deploy"
31+
pr_label: 'prod-deploy,automated-pr'
32+
pr_title: '[${{ github.event.repository.name }}] Production Deploy'
3333
pr_body: |
3434
This is an automated pull request to release the candidate branch into production, which will trigger a deployment.
3535
It was created by the [Production PR] action.

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup Node.js
2929
uses: actions/setup-node@v4
3030
with:
31-
node-version: "20" # Or your preferred Node.js version
31+
node-version: '20' # Or your preferred Node.js version
3232

3333
- name: Setup Bun
3434
uses: oven-sh/setup-bun@v2

.github/workflows/trigger-tasks-deploy-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Use Node.js 20.x
1212
uses: actions/setup-node@v4
1313
with:
14-
node-version: "22.x" # Updated to match Node.js w/ Vercel
14+
node-version: '22.x' # Updated to match Node.js w/ Vercel
1515
- name: Setup Bun
1616
uses: oven-sh/setup-bun@v2
1717
- name: Clear cache

.github/workflows/trigger-tasks-deploy-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Use Node.js 20.x
1515
uses: actions/setup-node@v4
1616
with:
17-
node-version: "20.x"
17+
node-version: '20.x'
1818

1919
- name: Setup Bun
2020
uses: oven-sh/setup-bun@v2

.prettierrc

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
11
{
2-
"plugins": ["prettier-plugin-tailwindcss"]
2+
"plugins": ["prettier-plugin-tailwindcss"],
3+
"semi": true,
4+
"singleQuote": true,
5+
"tabWidth": 2,
6+
"useTabs": false,
7+
"trailingComma": "all",
8+
"printWidth": 100,
9+
"bracketSpacing": true,
10+
"arrowParens": "always",
11+
"endOfLine": "lf",
12+
"quoteProps": "as-needed",
13+
"jsxSingleQuote": false,
14+
"bracketSameLine": false,
15+
"proseWrap": "preserve"
316
}

0 commit comments

Comments
 (0)