Skip to content

Commit

Permalink
Update Data
Browse files Browse the repository at this point in the history
  • Loading branch information
Babasile committed Dec 11, 2022
1 parent 3104fcb commit 03b79ce
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
uses: SonarSource/sonarcloud-github-action@v1.4
uses: SonarSource/sonarcloud-github-action@v1.8
with:
args: -Dsonar.projectVersion=${{ env.VERSION }}

- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.6
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: master
folder: build
35 changes: 28 additions & 7 deletions src/i18n/en/Data.class.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class Data implements Resume {
{
name: "Database",
comment: "",
keywords: [{ name: "MySQL" }, { name: "IBM DB2" }],
keywords: [{ name: "MySQL" }, { name: "IBM DB2" }, { name: "PostgreSQL" }],
},
{
name: "Versioning",
Expand All @@ -76,7 +76,7 @@ export class Data implements Resume {
{
diploma: "Master 360 Digital",
school: "SupDeWeb",
city: "Strasbourg",
city: "Strasbourg, France",
startDate: new Date("2018"),
endDate: new Date("2020"),
current: false,
Expand All @@ -100,7 +100,7 @@ export class Data implements Resume {
{
diploma: "LP - SIL CDED",
school: "IUT Robert Schuman",
city: "Illkirch",
city: "Illkirch, France",
startDate: new Date("2016"),
endDate: new Date("2017"),
current: false,
Expand Down Expand Up @@ -136,7 +136,7 @@ export class Data implements Resume {
{
diploma: "DUT Informatique AS",
school: "IUT de Metz",
city: "Metz",
city: "Metz, France",
startDate: new Date("2015"),
endDate: new Date("2016"),
current: false,
Expand All @@ -159,14 +159,35 @@ export class Data implements Resume {
},
];
jobs: Array<Role> = [
{
title: "Web Developer Analyst",
company: "Les Grands Chais de France",
city: "Petersbach, France",
startDate: new Date("2022-07"),
endDate: new Date(),
current: true,
missions: [],
keywords: [
{ name: "Java" },
{ name: "Angular" },
{ name: "IntelliJ IDEA" },
{ name: "JIRA" },
{ name: "Git" },
{ name: "GitLab" },
],
},
{
title: "Information Technology Engineer",
company: "CGI",
city: "Illkirch-Graffenstaden",
startDate: new Date("2021-07"),
endDate: new Date(),
current: true,
missions: [],
endDate: new Date("2022-06"),
current: false,
missions: [
{
name: "Scalable maintenance and technical support on a financial management application for a global agrifood group",
}
],
keywords: [
{ name: "Java" },
{ name: "GIT" },
Expand Down
29 changes: 25 additions & 4 deletions src/i18n/fr/Data.class.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class Data implements Resume {
{
name: "Base de données",
comment: "",
keywords: [{ name: "MySQL" }, { name: "IBM DB2" }],
keywords: [{ name: "MySQL" }, { name: "IBM DB2" }, { name: "PostgreSQL" }],
},
{
name: "Gestion de versions",
Expand Down Expand Up @@ -159,14 +159,35 @@ export class Data implements Resume {
},
];
jobs: Array<Role> = [
{
title: "Analyste Développeur Web",
company: "Les Grands Chais de France",
city: "Petersbach",
startDate: new Date("2022-07"),
endDate: new Date(),
current: true,
missions: [],
keywords: [
{ name: "Java" },
{ name: "Angular" },
{ name: "IntelliJ IDEA" },
{ name: "JIRA" },
{ name: "Git" },
{ name: "GitLab" },
],
},
{
title: "Ingénieur en Technologie de l'Information",
company: "CGI",
city: "Illkirch-Graffenstaden",
startDate: new Date("2021-07"),
endDate: new Date(),
current: true,
missions: [],
endDate: new Date("2022-06"),
current: false,
missions: [
{
name: "Maintenance évolutive et support technique sur une application de gestion financière pour un groupe agroalimentaire mondial",
}
],
keywords: [
{ name: "Java" },
{ name: "GIT" },
Expand Down

0 comments on commit 03b79ce

Please sign in to comment.