Skip to content

Commit 6c353d1

Browse files
committed
Merge remote-tracking branch 'upstream/main' into context-model
2 parents f6bb1bd + 7d81085 commit 6c353d1

File tree

19 files changed

+1447
-720
lines changed

19 files changed

+1447
-720
lines changed

.github/workflows/run-ci-cd.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,25 @@ jobs:
483483
working-directory: .github/ansible
484484
run: ansible-playbook -i inventory.yaml staging/proxy.yaml -e "github_workspace=$GITHUB_WORKSPACE"
485485

486+
run-lighthouse-ci:
487+
name: Run Lighthouse CI
488+
needs:
489+
- deploy-staging-nest-proxy
490+
runs-on: ubuntu-latest
491+
steps:
492+
- name: Check out repository
493+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
494+
495+
- name: Set up Node
496+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
497+
with:
498+
node-version: 22
499+
500+
- name: Run Lighthouse CI
501+
working-directory: frontend
502+
run: |
503+
npx -y @lhci/cli@0.15.1 autorun
504+
486505
build-production-images:
487506
name: Build Production Images
488507
env:

.github/workflows/run-code-ql.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
3030

3131
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@df559355d593797519d70b90fc8edd5db049e7a2
32+
uses: github/codeql-action/init@96f518a34f7a870018057716cc4d7a5c014bd61c
3333
with:
3434
languages: ${{ matrix.language }}
3535

@@ -53,6 +53,6 @@ jobs:
5353
run: pnpm install --frozen-lockfile
5454

5555
- name: Perform CodeQL analysis
56-
uses: github/codeql-action/analyze@df559355d593797519d70b90fc8edd5db049e7a2
56+
uses: github/codeql-action/analyze@96f518a34f7a870018057716cc4d7a5c014bd61c
5757
with:
5858
category: /language:${{ matrix.language }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ __pycache__
77
.env*
88
!.env.example
99
.idea
10+
.lighthouseci/
1011
.local
1112
.mypy_cache
1213
.npm/

backend/poetry.lock

Lines changed: 25 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backend/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ python = "^3.13"
4040
python-dateutil = "^2.9.0.post0"
4141
pyyaml = "^6.0.2"
4242
reportlab = "^4.4.2"
43-
requests = "^2.32.3"
43+
requests = "^2.32.5"
4444
sentry-sdk = { extras = [ "django" ], version = "^2.20.0" }
4545
slack-bolt = "^1.22.0"
4646
slack-sdk = "^3.35.0"
47-
strawberry-graphql = { extras = [ "django" ], version = "^0.278.1" }
47+
strawberry-graphql = { extras = [ "django" ], version = "^0.280.0" }
4848
strawberry-graphql-django = "^0.65.1"
4949
thefuzz = "^0.22.1"
5050

cspell/custom-dict.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ inlinehilite
6969
isanori
7070
jumpstart
7171
kasya
72+
lhci
7273
libexpat
7374
linkify
7475
lte

cspell/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"devDependencies": {
3-
"@cspell/dict-aws": "^4.0.14",
3+
"@cspell/dict-aws": "^4.0.15",
44
"@cspell/dict-data-science": "^2.0.9",
5-
"@cspell/dict-en_us": "^4.4.16",
5+
"@cspell/dict-en_us": "^4.4.17",
66
"@cspell/dict-fullstack": "^3.2.7",
77
"@cspell/dict-golang": "^6.0.23",
88
"@cspell/dict-k8s": "^1.0.12",

cspell/pnpm-lock.yaml

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ format-frontend-code:
2727
|| (printf "pnpm run format"; for i in $$(seq 1 58); do printf "."; done; printf "\033[37;41mFailed\033[0m\n" \
2828
&& pnpm run format))
2929

30+
lighthouse-ci:
31+
@cd frontend && npx -y @lhci/cli@0.15.1 autorun --collect.url=http://localhost:3000
32+
3033
lint-frontend-code:
3134
@(cd frontend && pnpm run lint:check >/dev/null 2>&1 \
3235
&& (printf "pnpm run lint"; for i in $$(seq 1 60); do printf "."; done; printf "\033[30;42mPassed\033[0m\n") \

0 commit comments

Comments
 (0)