diff --git a/.github/labeler.yml b/.github/labeler.yml index bf6c06c2..4bfac52e 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,26 +1,66 @@ ":construction_worker: CI": - changed-files: - any-glob-to-any-file: ".github/**" -":jar: api": +":memo: documentation": + - changed-files: + - any-glob-to-any-file: "**/*.md" +":traffic_light: e2e": + - changed-files: + - any-glob-to-any-file: "e2e/**/*" + - any-glob-to-any-file: "**/*.e2e.test" +":test_tube: unit test": + - changed-files: + - any-glob-to-any-file: "**/*.test" + +# + +":globe_with_meridians: api": + - changed-files: + - any-glob-to-any-file: + - "packages/~/app/api/**/*" + - "packages/~/*/api/**/*" +":file_cabinet: database": + - changed-files: + - any-glob-to-any-file: + - "packages/~/infra/*/database/**/*" + - "packages/~/*/repository/**/*" +":building_construction: infra": + - changed-files: + - any-glob-to-any-file: "packages/~/infra/**/*" +":books: lib": - changed-files: - - any-glob-to-any-file: "packages/~/*/api/**/*" + - any-glob-to-any-file: + - "packages/~/infra/*/lib/**/*" + - "packages/~/*/lib/**/*" ":lipstick: ui": - changed-files: - any-glob-to-any-file: - - "packages/~/app/ui**/*" + - "packages/~/app/ui/**/*" - "packages/~/*/ui/**/*" -":memo: documentation": + +# + +"scope: app": - changed-files: - - any-glob-to-any-file: "**/*.md" -":test_tube: e2e": + - any-glob-to-any-file: "packages/~/app/**/*" +"scope: auth": - changed-files: - - any-glob-to-any-file: "e2e/**/*" + - any-glob-to-any-file: "packages/~/auth/**/*" +"scope: config": + - changed-files: + - any-glob-to-any-file: "packages/~/config/**/*" "scope: moderations": - changed-files: - any-glob-to-any-file: "packages/~/moderations/**/*" +"scope: organizations": + - changed-files: + - any-glob-to-any-file: "packages/~/organizations/**/*" +"scope: proxy": + - changed-files: + - any-glob-to-any-file: "packages/~/proxy/**/*" "scope: users": - changed-files: - any-glob-to-any-file: "packages/~/users/**/*" -"scope: organizations": +"scope: welcome": - changed-files: - - any-glob-to-any-file: "packages/~/organizations/**/*" + - any-glob-to-any-file: "packages/~/welcome/**/*" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9e1ca86a..35b489b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,6 +7,9 @@ on: pull_request: workflow_dispatch: +env: + TZ: Europe/Paris + jobs: build: runs-on: ubuntu-latest diff --git a/packages/~/organizations/ui/src/info/About.test.tsx b/packages/~/organizations/ui/src/info/About.test.tsx index 4325d39a..bdfd6b75 100644 --- a/packages/~/organizations/ui/src/info/About.test.tsx +++ b/packages/~/organizations/ui/src/info/About.test.tsx @@ -34,5 +34,5 @@ test("render about section", async () => { id="about_section" />, ), - ).toBeString(); + ).toMatchSnapshot(); });