From 56b348eeb051eb328c3e8d7b0551c8c9de51d0e5 Mon Sep 17 00:00:00 2001 From: "Daniel A.C. Martin" Date: Thu, 2 Jan 2025 19:37:52 +0000 Subject: [PATCH 1/2] Ignore MacOS temp-file --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 3b3d9c73d..f16540083 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ coverage/ node_modules/ pnpm-lock.yaml storybook-static/ +.DS_Store From 52cd2ac6d60169d53570ba2e5d3569a0310ed159 Mon Sep 17 00:00:00 2001 From: "Daniel A.C. Martin" Date: Thu, 2 Jan 2025 19:38:24 +0000 Subject: [PATCH 2/2] CI: Set the locale --- .github/actions/setup/action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 49d677eab..fdb91a520 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -12,6 +12,12 @@ runs: using: composite steps: + - name: Set locale + shell: bash + run: | + sudo locale-gen ${{ env.LANG }} + sudo update-locale LANG=${{ env.LANG }} + - name: Setup package lock-file shell: bash run: |