2
0
Fork 0
mirror of https://code.forgejo.org/docker/build-push-action.git synced 2025-09-10 18:00:57 +00:00

fix: remove unnecessary @ts-expect-error directive

- The @ts-expect-error directive was causing CI failures
- npm dependencies don't have the type mismatch that pnpm dependencies had
- Verified all tests and builds pass with npm commands matching CI

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Claude 2025-08-03 20:23:21 -04:00
parent 805af4fb88
commit 7bff2036c1
4 changed files with 125 additions and 424 deletions

View file

@ -21,7 +21,6 @@ const createBlacksmithAPIClient = () => {
}
});
// @ts-expect-error Type mismatch between axios and axios-retry
axiosRetry(client, {
retries: 5,
retryDelay: axiosRetry.exponentialDelay,