mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-13 06:27:26 +00:00
Fix lint errors
This commit is contained in:
parent
7474287922
commit
9426b0fd6a
1 changed files with 3 additions and 3 deletions
|
|
@ -31,9 +31,9 @@ const verify = async (filename: string) => {
|
||||||
|
|
||||||
// Verify shasum
|
// Verify shasum
|
||||||
const verified = await openpgp.verify({
|
const verified = await openpgp.verify({
|
||||||
message: await openpgp.createMessage({ text: shasum }),
|
message: await openpgp.createMessage({text: shasum}),
|
||||||
signature: await openpgp.readSignature({ armoredSignature: shaSig }),
|
signature: await openpgp.readSignature({armoredSignature: shaSig}),
|
||||||
verificationKeys: await openpgp.readKeys({ armoredKeys: publicKeyArmored }),
|
verificationKeys: await openpgp.readKeys({armoredKeys: publicKeyArmored}),
|
||||||
});
|
});
|
||||||
const valid = await verified.signatures[0].verified;
|
const valid = await verified.signatures[0].verified;
|
||||||
if (valid) {
|
if (valid) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue