Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v3
uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 20
node-version: "^22.22.0"
cache: "npm"
- name: Install packages
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Node.js v22
uses: actions/setup-node@v4
with:
node-version: '22'
node-version: "^22.22.0"

- name: Install dependencies
run: npm install
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-to-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v3
uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 20
node-version: "^22.22.0"
cache: "npm"
- name: Install packages
run: |
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,8 @@ dist-ssr
*.sw?

storybook-static

test-results/
playwright-report/

src/**/*-snapshots/
2 changes: 2 additions & 0 deletions .storybook/preview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ const preview: Preview = {
'説明リスト',
'セレクトボックス',
'チェックボックス',
'チップラベル',
'テーブル',
'ディスクロージャー',
'ディバイダー',
Expand All @@ -42,6 +43,7 @@ const preview: Preview = {
'ノティフィケーションバナー',
'ハンバーガーメニューボタン',
'日付ピッカー',
'ファイルアップロード/ドロップエリア',
'フォームコントロールラベル',
'ボタン',
'見出し',
Expand Down
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.2.0/schema.json",
"$schema": "https://biomejs.dev/schemas/2.3.13/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
Expand Down
Loading