Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
c7251c2
feat: Introduce year-based routing and 2025 event edition components,…
anyulled Dec 6, 2025
8a06c4f
chore: Add VS Code launch configuration and disable several navigatio…
anyulled Dec 6, 2025
7d00244
Update src/2025/Home/components/Faqs/Faqs.tsx
anyulled Dec 6, 2025
46795e7
Update src/views/Home/components/Home/Home.tsx
anyulled Dec 6, 2025
a14f602
refactor: Consolidate sponsor display components into a single `Spons…
anyulled Dec 6, 2025
461c49a
feat: Update conference data to 2026, remove sponsor-related tests, a…
anyulled Dec 6, 2025
91cb12a
feat: Add VS Code launch configuration and update `@vitest/coverage-v…
anyulled Dec 7, 2025
da4f73f
refactor: centralize `TalkCard` component to `@components/common` and…
anyulled Dec 7, 2025
4adab9f
test: add comprehensive unit tests for the MeetingDetail component
anyulled Dec 7, 2025
32e41df
refactor: Extract year-specific data and logic into wrapper component…
anyulled Dec 7, 2025
6ecb5ff
refactor: centralize ActionButtons component and remove redundant tes…
anyulled Dec 7, 2025
df8ba62
feat: conditionally render the countdown component based on `edition?…
anyulled Dec 7, 2025
a23c0b1
refactor: move countdown components from 2025-specific path to views …
anyulled Dec 7, 2025
a427cea
feat: introduce `VenueWTC` component and dynamically render travel ve…
anyulled Dec 8, 2025
496ce71
feat: enable year-specific content and routing for the sponsorship pa…
anyulled Dec 8, 2025
458b824
feat: enable dynamic year-specific Code of Conduct pages and routing.
anyulled Dec 8, 2025
2581945
ci: update SonarCloud GitHub Action and comment out schedule navigati…
anyulled Dec 8, 2025
712051c
ci: Enhance SonarCloud workflow by adding a cache name for node modul…
anyulled Dec 9, 2025
deae5d2
ci: add SONAR_TOKEN to SonarCloud workflow.
anyulled Dec 9, 2025
abf6759
Merge branch 'main' into feat/2026-edition
anyulled Dec 9, 2025
6d6246f
feat: pull request feedback
anyulled Dec 11, 2025
5e3ac5b
refactor: Change SectionTitle subtitle from h2 to h3 and add a space …
anyulled Dec 11, 2025
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: 9 additions & 5 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,29 @@ name: sonar analysis

on:
push:
branches: [ "main" ]
branches: ["main"]
pull_request:
types: [ opened, synchronize, reopened ]
types: [opened, synchronize, reopened]

jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

steps:
# Checkout
- name: checkout
uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
# Load cache modules
- name: Cache node modules
id: cache-npm
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -42,7 +46,7 @@ jobs:

# Send report to sonar
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
uses: SonarSource/sonarqube-scan-action@v4.2.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
14 changes: 14 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"command": "npm start",
"name": "Run npm start",
"request": "launch",
"type": "node-terminal"
},
]
}
6 changes: 3 additions & 3 deletions package-lock.json

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

Binary file added public/images/wtc-auditorio.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/wtc.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
115 changes: 0 additions & 115 deletions src/2023/Cfp/CfpSection2023.test.tsx

This file was deleted.

113 changes: 0 additions & 113 deletions src/2023/Cfp/CfpSection2023.tsx

This file was deleted.

10 changes: 10 additions & 0 deletions src/2023/Cfp/CfpSectionWrapper.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React, { FC } from "react";
import CfpSection from "@views/Cfp/CfpSection";
import data2023 from "@data/2023.json";
import { data } from "./CfpData";

export const CfpSectionWrapper: FC = () => {
return <CfpSection conferenceConfig={data2023} cfpData={data} />;
};

export default CfpSectionWrapper;
59 changes: 0 additions & 59 deletions src/2023/Home/components/ActionButtons/ActionButtons.tsx

This file was deleted.

Loading
Loading