chore: bump deps
This commit is contained in:
parent
2a68a4d06e
commit
e7c2f2cc05
|
@ -0,0 +1,27 @@
|
||||||
|
name: Test
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
# test action works running from the graph
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Send dingding notify
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
dingToken: ${{ secrets.DING_TOKEN }}
|
||||||
|
secret: ${{ secrets.DING_SECRET }} # if secret set, action will call API with sign
|
||||||
|
body: |
|
||||||
|
{
|
||||||
|
"msgtype": "link",
|
||||||
|
"link": {
|
||||||
|
"text": "这个即将发布的新版本,创始人陈航(花名“无招”)称它为“红树林”。而在此之前,每当面临重大升级,产品经理们都会取一个应景的代号,这一次,为什么是“红树林”?",
|
||||||
|
"title": "时代的火车向前开",
|
||||||
|
"picUrl": "",
|
||||||
|
"messageUrl": "https://www.dingtalk.com/s?__biz=MzA4NjMwMTA2Ng==&mid=2650316842&idx=1&sn=60da3ea2b29f1dcc43a7c8e4a7c97a16&scene=2&srcid=09189AnRJEdIiWVaKltFzNTw&from=timeline&isappinstalled=0&key=&ascene=2&uin=&devicetype=android-23&version=26031933&nettype=WIFI"
|
||||||
|
}
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
28
package.json
28
package.json
|
@ -8,9 +8,9 @@
|
||||||
"format": "prettier --write **/*.ts",
|
"format": "prettier --write **/*.ts",
|
||||||
"format-check": "prettier --check **/*.ts",
|
"format-check": "prettier --check **/*.ts",
|
||||||
"lint": "eslint src/**/*.ts",
|
"lint": "eslint src/**/*.ts",
|
||||||
"pack": "ncc build src/index.ts -o dist",
|
"package": "ncc build src/index.ts -o dist",
|
||||||
"test": "jest",
|
"test": "jest",
|
||||||
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
|
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -24,19 +24,19 @@
|
||||||
"author": "zcong1993",
|
"author": "zcong1993",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.2.4",
|
"@actions/core": "^1.6.0",
|
||||||
"@zcong/ding-bot": "^0.1.1"
|
"@zcong/ding-bot": "^0.1.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/jest": "^26.0.0",
|
"@types/jest": "^27.0.2",
|
||||||
"@types/node": "^14.0.13",
|
"@types/node": "^16.11.6",
|
||||||
"@typescript-eslint/parser": "^3.3.0",
|
"@typescript-eslint/parser": "^5.3.0",
|
||||||
"@zeit/ncc": "^0.22.3",
|
"@vercel/ncc": "^0.31.1",
|
||||||
"eslint": "^7.2.0",
|
"eslint": "^8.2.0",
|
||||||
"eslint-plugin-github": "^4.0.1",
|
"eslint-plugin-github": "^4.3.3",
|
||||||
"eslint-plugin-jest": "^23.13.2",
|
"eslint-plugin-jest": "^25.2.3",
|
||||||
"jest": "^26.0.1",
|
"jest": "^27.3.1",
|
||||||
"prettier": "^2.0.5",
|
"prettier": "^2.4.1",
|
||||||
"typescript": "^3.9.5"
|
"typescript": "^4.4.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
10200
pnpm-lock.yaml
10200
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
|
@ -31,7 +31,7 @@ async function run(): Promise<void> {
|
||||||
core.setFailed(resp?.errmsg)
|
core.setFailed(resp?.errmsg)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (requestErr) {
|
} catch (requestErr: any) {
|
||||||
core.error(
|
core.error(
|
||||||
`send request error, status: ${requestErr.response?.status}, data: ${requestErr.response?.data}`
|
`send request error, status: ${requestErr.response?.status}, data: ${requestErr.response?.data}`
|
||||||
)
|
)
|
||||||
|
@ -42,7 +42,7 @@ async function run(): Promise<void> {
|
||||||
core.setFailed(requestErr.message)
|
core.setFailed(requestErr.message)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error: any) {
|
||||||
core.setFailed(error.message)
|
core.setFailed(error.message)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue