プレイグラウンド、サンドボックス、使い捨てスクリプト置き場
0

Configure Feed

Select the types of activity you want to include in your feed.

test

Kohei Watanabe (Oct 7, 2025, 3:39 PM +0900) 9da28750 19c38f34

+22
+22
.github/workflows/locale-test.yml
··· 1 + name: macOS locale test 2 + on: 3 + workflow_dispatch: 4 + jobs: 5 + locale-check: 6 + runs-on: macos-latest 7 + steps: 8 + - uses: actions/checkout@v5 9 + - uses: actions/setup-node@v5 10 + with: 11 + node-version: 22 12 + - name: Check LC_ALL=ja_JP.UTF-8 locale 13 + run: | 14 + echo "Expected: ja-JP" 15 + output=$(LC_ALL=ja_JP.UTF-8 node -p navigator.language) 16 + echo "Actual: $output" 17 + if [ "$output" != "ja-JP" ]; then 18 + echo "❌ Locale mismatch" 19 + exit 1 20 + else 21 + echo "✅ Locale OK" 22 + fi