In the root of your project, add .gitlab-ci.yml
with the configuration below.
image: node:latest
stages:
/** | |
* Retrieve object from Chrome's Local StorageArea | |
* @param {string} key | |
*/ | |
const getObjectFromLocalStorage = async function(key) { | |
return new Promise((resolve, reject) => { | |
try { | |
chrome.storage.local.get(key, function(value) { | |
resolve(value[key]); | |
}); |
Windows Service with Python 3.5 and pyinstaller