diff --git a/.claude/settings.local.json b/.claude/settings.local.json index 1a98403..caee28a 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -26,7 +26,10 @@ "Bash(jq:*)", "Bash(done)", "Bash(pnpm exec biome format:*)", - "Bash(gh run list:*)" + "Bash(gh run list:*)", + "Bash(gh release edit:*)", + "Bash(git add:*)", + "Bash(git commit:*)" ], "deny": [], "ask": [] diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d39a6d9..0abb7df 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -43,18 +43,17 @@ jobs: steps: - uses: actions/checkout@v4 + - name: setup pnpm + uses: pnpm/action-setup@v4 + with: + version: 10 + - name: setup node uses: actions/setup-node@v4 with: node-version: lts/* cache: 'pnpm' - - name: setup pnpm - uses: pnpm/action-setup@v4 - with: - version: 10 - package_json_file: package.json - - name: install Rust stable uses: dtolnay/rust-toolchain@stable with: