checkBios/eslint.config.mjs
nyyu 82bc11b115
All checks were successful
/ run (push) Successful in 13s
feat: Enhance BIOS version tracking and notifications
- Updated start script in package.json to include additional permissions for Deno.
- Added AWS SDK dependency for S3 operations.
- Implemented downloadFile and uploadFile functions in s3.ts for S3 interactions.
- Created notify function in notify.ts to send notifications via SMS webhook.
- Modified getBios function in index.ts to compare current and new BIOS versions, upload new data to S3, and send notifications if new versions are found.
2025-05-30 20:13:11 +02:00

9 lines
190 B
JavaScript

// @ts-check
import eslint from "@eslint/js";
import tseslint from "typescript-eslint";
export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
);