Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,21 @@ version: 2.1
jobs:
build:
docker:
# Node 24.18 (engines/.nvmrc) — matching browsers image.
- image: cimg/node:24.18-browsers
# Node 24.18.1 (engines/.nvmrc) — matching browsers image.
- image: cimg/node:24.18.1-browsers
working_directory: ~/repo
steps:
- checkout
- run:
name: PR base branch verification (main requires dev head)
command: |
TARGET="${CIRCLE_TARGET_BRANCH:-${GITHUB_BASE_REF:-}}"
SOURCE="${CIRCLE_BRANCH:-$(git rev-parse --abbrev-ref HEAD)}"
if [ -n "$TARGET" ] && [ "$TARGET" = "main" ] && [ "$SOURCE" != "dev" ]; then
echo "FAIL: PRs targeting main must originate from dev branch (got: $SOURCE)." >&2
exit 1
fi
echo "OK: PR base/head branch verification passed (Target: ${TARGET:-default}, Source: $SOURCE)"
- run:
name: Test install
command: npm install
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.18.0
24.18.1
85 changes: 56 additions & 29 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "appersonautomotive.com",
"version": "3.2.0",
"version": "3.2.3",
"description": "appersonautomotive.com",
"main": "dist/index.html",
"repository": {
Expand All @@ -9,7 +9,7 @@
},
"author": "https://github.com/orgs/WebJamApps/teams/the-95-theses",
"engines": {
"node": "24.18.0"
"node": "24.18.1"
},
"files": [
"vite.config.ts",
Expand Down Expand Up @@ -55,7 +55,7 @@
"express-sslify": "^1.2.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-router": "^7.15.1",
"react-router": "^8.3.0",
"react-router-dom": "^7.15.1",
"react-router-hash-link": "^2.4.3",
"react-slick": "^0.31.0",
Expand Down
2 changes: 1 addition & 1 deletion test/App/__snapshots__/App.spec.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ exports[`App component > renders the component 1`] = `
style="font-size: 13px; color: rgb(192, 192, 192); font-family: Habibi, ChivoBlack, Arial, sans-serif;"
>
v
3.2.0
3.2.3
</span>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions test/App/__snapshots__/AppTemplate.spec.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ exports[`AppTemplate > calls the mobile menu 1`] = `
style="font-size: 13px; color: rgb(192, 192, 192); font-family: Habibi, ChivoBlack, Arial, sans-serif;"
>
v
3.2.0
3.2.3
</span>
</div>
</div>
Expand Down Expand Up @@ -420,7 +420,7 @@ exports[`AppTemplate > renders the component 1`] = `
style="font-size: 13px; color: rgb(192, 192, 192); font-family: Habibi, ChivoBlack, Arial, sans-serif;"
>
v
3.2.0
3.2.3
</span>
</div>
</div>
Expand Down
Loading