We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
arduino
Learn more about funding links in repositories.
Report abuse
1 parent 4a9868e commit 652d950Copy full SHA for 652d950
package.json
@@ -6,7 +6,7 @@
6
"scripts": {
7
"build": "tsc",
8
"format": "prettier --write **/*.ts",
9
- "format-check": "prettier --check **/*.ts",
+ "format-check": "prettier --end-of-line auto --check **/*.ts",
10
"pack": "ncc build",
11
"test": "jest"
12
},
src/main.ts
@@ -8,7 +8,7 @@ async function run() {
if (version) {
await installer.getArduinoCli(version);
}
- } catch (error) {
+ } catch (error: any) {
core.setFailed(error.message);
13
14
0 commit comments