-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Tracking northstar 1 pété sur NextJS [NGC-270] #256 - Corrige la fonction de remplacement de locale dans l'url [NGC-96] #262 - Optimisation test e2e #254 - Set category colors in website config (NGC-317) #248 - Retire bloc de feedback de la page de résultats amis [NGC-104] #246 - Corrige l'affichage de la page Plan du site [NGC-212] #243 - Corrige le style bouton mode groupe [NGC-180] #241 - Fix: show subcategories in the /fin page for the 'services sociétaux' - [NGC-226] #235 - Supprime les enregistrement localStorage pour les trajets détaillés [NGC-233] #234 - 💅 Corrige erreur de style sur le tutoriel [NGC-199] #233 - Modifie le style du footer [NGC-245] #232 - Corrige une redirection [NGC-174] #231 - Ajoute le tally - retire les anciens modes de retours [NGC-104] #230 - Améliore le comportement de redirection en cas de partage d'url de fin [NGC-201] #229 - Ajoute la documentation affichée côté serveur [NGC-236] [NGC-119] #228 - Ajoute redirections + workflow de détection de liens morts [NGC-174][NGC-269] #226 - Documentation / Enlever lien retour au test [NGC-97] #223 - Remplace les mentions à Netlify par Vercel [NGC-196] #222 - 🐛 Correction lien profil > fin + correction affichage nombre d'actions dans la page profil [NGC-192] #221 - Ajoute un bouton "Voir mes résultats" sur la page profil [NGC-198] [NGC-192] #219 - Améliore le comportement de partage de la page de fin [NGC-201] #218 - Split testing, fait maison 🧑🍳 #211 - ✨ Ajout de la nouvelle barre de navigation #210
- v2.10.0
- v2.9.4
- v2.9.3
- v2.9.2
- v2.9.1
- v2.9.0
- v2.8.2
- v2.8.1
- v2.8.0
- v2.7.0
- v2.6.1
- v2.6.0
- v2.5.3
- v2.5.2
- v2.5.1
- v2.5.0
- v2.4.0
- v2.3.1
- v2.3.0
- v2.2.0
- v2.1.0
- v2.0.1
- v1.5.7
- v1.5.6
- v1.5.5
- v1.5.4
- v1.5.3
- v1.5.2
- v1.5.1
- v1.5.0
- v1.4.6
- v1.4.5
- v1.4.4
- v1.4.3
- v1.4.2
- v1.4.1
- v1.4.0
- v1.3.0
- v1.2.0
- v1.1.6
- v1.1.5
- v1.1.4
- v1.1.3
- v1.1.2
Showing
265 changed files
with
5,199 additions
and
2,609 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Check links validity | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# https://crontab.guru/#0_11_*_*_2 | ||
- cron: '0 11 * * 2' | ||
jobs: | ||
run: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: ./.github/actions/install | ||
- name: Install RipGrep | ||
run: sudo apt install -y ripgrep | ||
- id: invalid_links | ||
run: node ./scripts/check-links-validity.mjs --ci | ||
timeout-minutes: 15 | ||
- if: steps.invalid_links.outputs.comment | ||
uses: ./.github/actions/reopen-issue-with-comment | ||
with: | ||
issue-number: 225 | ||
comment: ${{ steps.invalid_links.outputs.comment }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,23 +13,26 @@ on: | |
|
||
jobs: | ||
sleep: | ||
name: Wait 3 min for the Vercel preview to be deployed | ||
name: Wait for the vercel build to complete | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Sleep for 90s | ||
run: sleep 90s | ||
shell: bash | ||
- name: Waiting for Vercel Preview | ||
uses: patrickedqvist/[email protected] | ||
id: waitForVercel | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
max_timeout: 300 | ||
|
||
e2e: | ||
cypress-run: | ||
runs-on: ubuntu-latest | ||
needs: sleep | ||
needs: [sleep] | ||
container: | ||
image: cypress/browsers:node18.12.0-chrome107 | ||
image: cypress/browsers:latest | ||
options: --user 1001 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
containers: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14] | ||
containers: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] | ||
name: Testing e2e in worker ${{ matrix.containers }} | ||
if: github.event.pull_request.draft == false | ||
steps: | ||
|
@@ -55,7 +58,6 @@ jobs: | |
- name: Test - e2e [${{ env.MODE }}] | ||
uses: cypress-io/[email protected] | ||
with: | ||
install: true | ||
build: yarn run e2e:generate:personas | ||
browser: chrome | ||
parallel: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
18 | ||
18.17 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
const redirects = [ | ||
{ | ||
source: '/actions/liste', | ||
destination: '/actions', | ||
permanent: true, | ||
}, | ||
{ | ||
source: '/groupes/:path*', | ||
destination: '/amis/:path*', | ||
permanent: true, | ||
}, | ||
{ | ||
source: '/conférence/:path*', | ||
destination: 'https://sondages.nosgestesclimat.fr/conférence/:path*', | ||
permanent: true, | ||
}, | ||
{ | ||
source: '/sondage/:path*', | ||
destination: 'https://sondages.nosgestesclimat.fr/sondage/:path*', | ||
permanent: true, | ||
}, | ||
{ | ||
source: '/mon-empreinte-carbone/:path*', | ||
destination: '/fin/:path*', | ||
permanent: true, | ||
}, | ||
{ | ||
source: '/nouveaut%C3%A9s/:path*', | ||
destination: '/nouveautes/:path*', | ||
permanent: true, | ||
}, | ||
{ | ||
source: '/vie-priv%C3%A9e', | ||
destination: '/vie-privee', | ||
permanent: true, | ||
}, | ||
{ | ||
source: '/partenaires', | ||
destination: '/diffuser', | ||
permanent: true, | ||
}, | ||
{ | ||
source: '/blog/journée-mondial-environnement', | ||
destination: '/blog/journee-mondial-environnement', | ||
permanent: true, | ||
}, | ||
{ | ||
source: '/mod%C3%A8le', | ||
destination: '/modele', | ||
permanent: true, | ||
}, | ||
{ | ||
source: '/%C3%A0-propos', | ||
destination: '/a-propos', | ||
permanent: true, | ||
}, | ||
{ | ||
source: '/groupe/:path*', | ||
destination: 'https://sondages.nosgestesclimat.fr/', | ||
permanent: true, | ||
}, | ||
] | ||
|
||
module.exports = redirects |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export function click(elementId) { | ||
cy.get(`[data-cypress-id="${elementId}"]`).click() | ||
export function click(elementId, options = {}) { | ||
cy.get(`[data-cypress-id="${elementId}"]`).first().click() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.