File tree Expand file tree Collapse file tree 9 files changed +1601
-1709
lines changed Expand file tree Collapse file tree 9 files changed +1601
-1709
lines changed Original file line number Diff line number Diff line change 2525 - uses : actions/checkout@v4
2626 - uses : actions/setup-node@v4
2727 with :
28- node-version : " 20 "
28+ node-version : " 22 "
2929 - uses : bahmutov/npm-install@v1
3030 - name : Build back
3131 run : cd api && yarn build
8080 - uses : actions/checkout@v4
8181 - uses : actions/setup-node@v4
8282 with :
83- node-version : " 20 "
83+ node-version : " 22 "
8484 - uses : bahmutov/npm-install@v1
8585 - run : cd web
8686 - name : Build
Original file line number Diff line number Diff line change 1- 20
1+ 22
Original file line number Diff line number Diff line change 1- FROM node:20 -alpine as build
1+ FROM node:22 -alpine as build
22RUN apk add --no-cache \
33 git \
44 openssh-client \
Original file line number Diff line number Diff line change 11# build step
2- FROM node:20 -alpine as build
2+ FROM node:22 -alpine as build
33WORKDIR /app
44COPY package.json yarn.lock ./
55COPY api/package.json api/
Original file line number Diff line number Diff line change 4545 "@types/express" : " 4.17.21" ,
4646 "@types/jsdom" : " ^21.1.7" ,
4747 "@types/memoizee" : " ^0.4.7" ,
48- "@types/node" : " ^18.19.64 " ,
48+ "@types/node" : " ^22.0.0 " ,
4949 "@types/node-fetch" : " ^2.5.7" ,
5050 "@types/semver" : " ^7.5.3" ,
5151 "@types/ungap__structured-clone" : " ^0.3.0" ,
7272 "vitest" : " ^1.2.2"
7373 },
7474 "dependencies" : {
75+ "@commitlint/cli" : " ^19.8.0" ,
76+ "@commitlint/config-conventional" : " ^19.8.0" ,
7577 "@octokit/graphql" : " ^7.0.2" ,
7678 "@trpc/server" : " ^10.18.0" ,
7779 "@types/pg" : " ^8.11.6" ,
8082 "jwt-decode" : " ^3.1.2" ,
8183 "kysely" : " ^0.27.4" ,
8284 "kysely-ctl" : " ^0.12.0" ,
85+ "lefthook" : " ^1.10.10" ,
8386 "oidc-spa" : " ^6.1.9" ,
8487 "pg" : " ^8.11.5" ,
8588 "semver" : " ^7.5.4" ,
Original file line number Diff line number Diff line change 2020 "turbo" : " ^1.12.5"
2121 },
2222 "engines" : {
23- "node" : " ^20 "
23+ "node" : " ^22 "
2424 },
2525 "workspaces" : [
2626 " api" ,
2727 " web"
28- ]
28+ ],
29+ "dependencies" : {}
2930}
Original file line number Diff line number Diff line change 3838 "i18next-http-backend" : " ^3.0.2" ,
3939 "i18nifty" : " ^3.2.2" ,
4040 "memoizee" : " ^0.4.14" ,
41- "oidc-spa" : " ^6.1.9 " ,
41+ "oidc-spa" : " ^6.14.0 " ,
4242 "path" : " ^0.12.7" ,
4343 "powerhooks" : " ^1.0.12" ,
4444 "react" : " ^18.2.0" ,
6666 "@storybook/react" : " ^6.5.10" ,
6767 "@types/flexsearch" : " ^0.7.3" ,
6868 "@types/memoizee" : " ^0.4.4" ,
69- "@types/node" : " ^18.19.64 " ,
69+ "@types/node" : " ^22.0.0 " ,
7070 "@types/react" : " ^18.0.18" ,
7171 "@types/react-dom" : " ^18.0.6" ,
7272 "@typescript-eslint/eslint-plugin" : " ^5.62.0" ,
Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ import { MuiDsfrThemeProvider } from "@codegouvfr/react-dsfr/mui";
44import { startReactDsfr } from "@codegouvfr/react-dsfr/spa" ;
55import { assert } from "tsafe/assert" ;
66import "./ui/i18n/i18next" ;
7- import { handleOidcCallback } from "oidc-spa/oidc/handleOidcCallback" ;
7+ import { handleOidcCallback } from "oidc-spa/core/handleOidcCallback" ;
8+
89handleOidcCallback ( ) ;
910
1011startReactDsfr ( { defaultColorScheme : "system" } ) ;
Load Diff Large diffs are not rendered by default.
You can’t perform that action at this time.
0 commit comments