From 58dc270e3f9d25921b1874971ad0edf7f1a13b65 Mon Sep 17 00:00:00 2001 From: Alexander Cerutti Date: Sat, 29 Apr 2023 18:09:34 +0200 Subject: [PATCH] Added comment in tests about workflows --- specs/PKPass.spec.cjs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/specs/PKPass.spec.cjs b/specs/PKPass.spec.cjs index 78b54d3..676e848 100644 --- a/specs/PKPass.spec.cjs +++ b/specs/PKPass.spec.cjs @@ -10,6 +10,11 @@ const fs = require("node:fs"); const path = require("node:path"); const { default: PKPass } = require("../lib/PKPass"); +/** + * SIGNER_CERT, SIGNER_KEY, WWDR and SIGNER_KEY_PASSPHRASE are also set + * as secrets in Github for run tests on Github Actions + */ + const SIGNER_CERT = process.env.SIGNER_CERT || fs.readFileSync(path.resolve(__dirname, "../certificates/signerCert.pem"));