Skip to content

Commit 9817a7e

Browse files
feat: 2026 edition (#812)
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent 72a4cf5 commit 9817a7e

File tree

112 files changed

+3353
-3947
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+3353
-3947
lines changed

.github/workflows/sonarcloud.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,29 @@ name: sonar analysis
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: ["main"]
66
pull_request:
7-
types: [ opened, synchronize, reopened ]
7+
types: [opened, synchronize, reopened]
88

99
jobs:
1010
sonarcloud:
1111
name: SonarCloud
1212
runs-on: ubuntu-latest
13+
env:
14+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
1315

1416
steps:
1517
# Checkout
1618
- name: checkout
1719
uses: actions/checkout@v3
1820
with:
19-
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
21+
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
2022
# Load cache modules
2123
- name: Cache node modules
2224
id: cache-npm
2325
uses: actions/cache@v3
26+
env:
27+
cache-name: cache-node-modules
2428
with:
2529
path: ~/.npm
2630
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
@@ -42,7 +46,7 @@ jobs:
4246
4347
# Send report to sonar
4448
- name: SonarCloud Scan
45-
uses: SonarSource/sonarcloud-github-action@master
49+
uses: SonarSource/sonarqube-scan-action@v4.2.1
4650
env:
47-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
4851
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
52+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.vscode/launch.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"command": "npm start",
9+
"name": "Run npm start",
10+
"request": "launch",
11+
"type": "node-terminal"
12+
},
13+
]
14+
}

package-lock.json

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

public/images/wtc-auditorio.jpg

629 KB
Loading

public/images/wtc.jpg

248 KB
Loading

src/2023/Cfp/CfpSection2023.test.tsx

Lines changed: 0 additions & 115 deletions
This file was deleted.

src/2023/Cfp/CfpSection2023.tsx

Lines changed: 0 additions & 113 deletions
This file was deleted.

src/2023/Cfp/CfpSectionWrapper.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import React, { FC } from "react";
2+
import CfpSection from "@views/Cfp/CfpSection";
3+
import data2023 from "@data/2023.json";
4+
import { data } from "./CfpData";
5+
6+
export const CfpSectionWrapper: FC = () => {
7+
return <CfpSection conferenceConfig={data2023} cfpData={data} />;
8+
};
9+
10+
export default CfpSectionWrapper;

src/2023/Home/components/ActionButtons/ActionButtons.tsx

Lines changed: 0 additions & 59 deletions
This file was deleted.

0 commit comments

Comments
 (0)