Skip to content

Latest commit

 

History

History
420 lines (324 loc) · 21 KB

File metadata and controls

420 lines (324 loc) · 21 KB

envato-labs-ai-f3804c98-4d1c-4eb2-b0c0-beea2e78ac0d image

starspceafiş envato-labs-ai-726e4447-d8ae-4fed-af8d-819fc31a7252 3b6eceb1-dbb3-4c43-b218-4d8c08844eb5-size-400x400 5e807ddf-85b2-4256-8d3a-24d8fc1a19d7-size-400x400 envato-labs-ai-824f8b97-7b6e-4f61-a172-de73a77dbb39 envato-labs-ai-50e67bbc-def5-4d90-bcff-4f0a4e6a079b envato-labs-ai-3509a51d-93c7-4fa9-b347-8a8ff16b7b62

envato-labs-ai-6a5150be-21a9-4096envato-labs-ai-c3225a1c-19ab-4758-a2ef-36b1e59e6690 -a3f7-0411c8db32bd envato-labs-ai-6c4a3171-de63-4f62-a292-0d97c61d6d61 envato-labs-ai-846ef6d0-ce84-4653-9488-022b78c78176 envato-labs-ai-65ec8b80-6b39-4e10-bf41-2d95c9b87e05 envato-labs-ai-53c6c7ae-8b10-4f19-93a1-01f48b476fc4 envato-labs-ai-12f7d7c5-bf16-4f43-b9d6-d57cd5329807 envato-labs-ai-e221a8ce-75c5-4edb-8208-a8d53be89b16 image envato-labs-ai-e2688f42-ee00-403e-bf0a-8cdf1506933c envato-labs-ai-e2f27e4f-3c64-4b96-89d8-c134f4fc1b5e envato-labs-ai-66c0f464-9938-4a4b-bd6d-ab3b6395a480 envato-labs-ai-43bc82f4-33fe-4ef1-93af-8214982b4233 envato-labs-ai-93fae550-134a-4a6f3247c-27b6-4d7a-a357-e41adf72a913-size-400x400 4d0-baf8-3c001c1fd58c Complex digital core featuring flowing data streams, interconnected geometric patterns, and detailed microcircuitry enabling energy transfer  Set against a deep black background  High-tech aesthetic wit (1) envato-labs-ai-282d4f76-2b9e-41a4-97e1-c1954ca52b76

computer network and peripherals star technology logo colorful world with broken meteor rocks and planets in the middle of the colorful star inside the world (22)

a computer network and peripherals with a colorful world with a colorful triangle in the middle of the broken meteor rocks and planets, the star technology logo, people watching from the world in space seeing  (11)

colorful star technology cloud sign with codes and digital computer  in the middle with colorful triangles in the comet wings with colorful luminous computer network with advanced software seen from space  (1)

Starteknoloj ta (1)(https://github.com/user-attachments/assets/ef1c92c2-bc69-4b06-9d88-945df7794d3a)

<iframe loading="lazy" style="position: absolute; width: 100%; height: 100%; top: 0; left: 0; border: none; padding: 0;margin: 0;" src="https://www.canva.com/design/DAGmXxihZo8/z3BB4vbUOAbRkOb6y6QnwQ/view?embed" allowfullscreen="allowfullscreen" allow="fullscreen"> </iframe>
Star Teknoloji JavaScript Template - Star Teknoloji

[(*```STAR``My```Tech`````*****````*****```***** é©*************©*************©``é````]***

[(*```STARMy```Tech*** ***é**©**````````*****``````````©``````````*****``````````©``é``]

<iframe loading="lazy" style="position: absolute; width: 100%; height: 100%; top: 0; left: 0; border: none; padding: 0;margin: 0;" src="https://www.canva.com/design/DAGlnz87ebc/qX_nlL760ZEAoqGl4dFrng/view?embed" allowfullscreen="allowfullscreen" allow="fullscreen"> </iframe>
Colorful Star Computer Logo Design - Star Teknoloji [![pages-build-deployment](https://github.com/Codes-Exe/JavaScript/actions/workflows/pages/pages-build-deployment/badge.svg?branch=main)](https://github.com/Codes-Exe/JavaScript/actions/workflows/pages/pages-build-deployment)
<iframe loading="lazy" style="position: absolute; width: 100%; height: 100%; top: 0; left: 0; border: none; padding: 0;margin: 0;" src="https://www.canva.com/design/DAGlLmFAypc/dpH5RYWuqOCKyD40xWgVUg/view?embed" allowfullscreen="allowfullscreen" allow="fullscreen"> </iframe>
Siyah Beyaz Koyu Fütüristik Stilde Çok Yakında Web Sitesi Çok Yakında Web Sitesi Çok Yakında Sayfası - Star Computer

Create a JavaScript Action

Use this template to bootstrap the creation of a JavaScript action.:rocket:

This template includes tests, linting, a validation workflow, publishing, and versioning guidance.

If you are new, there's also a simpler introduction. See the Hello World JavaScript Action

Create an action from this template

Click the Use this Template and provide the new repo details for your action

Code in Main

Install the dependencies

npm install

Run the tests ✔️

$ npm test

 PASS  ./index.test.js
  ✓ throws invalid number (3ms)
  ✓ wait 500 ms (504ms)
  ✓ test runs (95ms)
...

Change action.yml

The action.yml defines the inputs and output for your action.

Update the action.yml with your name, description, inputs and outputs for your action.

See the documentation

Change the Code

Most toolkit and CI/CD operations involve async operations so the action is run in an async function.

const core = require('@actions/core');
...

async function run() {
  try {
      ...
  }
  catch (error) {
    core.setFailed(error.message);
  }
}

run()

See the toolkit documentation for the various packages.

Package for distribution

GitHub Actions will run the entry point from the action.yml. Packaging assembles the code into one file that can be checked in to Git, enabling fast and reliable execution and preventing the need to check in node_modules.

Actions are run from GitHub repos. Packaging the action will create a packaged action in the dist folder.

Run prepare

npm run prepare

Since the packaged index.js is run from the dist folder.

git add dist

Create a release branch

Users shouldn't consume the action from master since that would be latest code and actions can break compatibility between major versions.

Checkin to the v1 release branch

git checkout -b v1
git commit -a -m "v1 release"
git push origin v1

Note: We recommend using the --license option for ncc, which will create a license file for all of the production node modules used in your project.

Your action is now published! 🧑‍💻:

Proje

<iframe src="https://player.vimeo.com/video/1093867217?badge=0&autopause=0&player_id=0&app_id=58479" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share" style="position:absolute;top:0;left:0;width:100%;height:100%;" title="ogtal ‐ Clipchamp ile yapıldı (3)"></iframe>
<script src="https://player.vimeo.com/api/player.js"></script>

Study and Discussion

<script> /** * RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS. * LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables */ /* var disqus_config = function () { this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable }; */ (function() { // DON'T EDIT BELOW THIS LINE var d = document, s = d.createElement('script'); s.src = 'https://starteknoloji-space.disqus.com/embed.js'; s.setAttribute('data-timestamp', +new Date()); (d.head || d.body).appendChild(s); })(); </script> Please enable JavaScript to view the comments powered by Disqus. <script id="dsq-count-scr" src="//starteknoloji-space.disqus.com/count.js" async></script>

Websites of our businesses used

Sitelerimizdeki uygulamalar ev ve işyerleri için özelleştirebilir, geliştirilebiliriz. Yorum, istek ve sorularınız için lütfen yazınız. NOT; Projelrimizi hazırlamamızda Lütfen katkıda bulunun.# Beğendiysen Reklam verebilirsiniz üçretsizdir. İletişim : ercetinguler@starteknloji.space e-posta gönderebilirisiniz.

<iframe src="https://starcomputer.com.tr" title="Planet" height="400" width="1000" style="border:10;"></iframe> <iframe src="https://starteknoloji.github.io/ThemeBlue/" title="Planet" height="400" width="1000" style="border:10;"></iframe> <script src="https://www.paypal.com/sdk/js?client-id=BAAZLPCKnSb06zNs1aBikWVXyJHPiVZvA3ZLvqPo1rNpf92PSLL91IOPWDdhXBQNVW275Q8xspd4OB7Y-I&components=hosted-buttons&disable-funding=venmo¤cy=USD"> </script>
<script> paypal.HostedButtons({ hostedButtonId: "X2N7ME57HB89S", }).render("#paypal-container-X2N7ME57HB89S") </script> <script src="https://www.paypal.com/sdk/js?client-id=BAASlR7ZOaZ3ZUlPcIpMBaMKS-8NYGnU0GDawmguI1KZAFbZszey9baVVAXKxR1cz4RWE6bnIcX-7Z_VLk&components=hosted-buttons&disable-funding=venmo¤cy=USD"> </script>
<script> paypal.HostedButtons({ hostedButtonId: "BGWQVG5XXGACJ", }).render("#paypal-container-BGWQVG5XXGACJ") </script> <script src="https://www.paypal.com/sdk/js?client-id=BAAZLPCKnSb06zNs1aBikWVXyJHPiVZvA3ZLvqPo1rNpf92PSLL91IOPWDdhXBQNVW275Q8xspd4OB7Y-I&components=hosted-buttons&disable-funding=venmo¤cy=USD"> </script>
<script> paypal.HostedButtons({ hostedButtonId: "ZHEH5QJBCN7A4", }).render("#paypal-container-ZHEH5QJBCN7A4") </script> <iframe src="https://mycomputer.digital" title="Planet" height="400" width="1000" style="border:10;"></iframe> <iframe src="https://starcomputer.shop" title="Planet" height="400" width="1000" style="border:10;"></iframe> <iframe src="https://github.com/sponsors/StarTeknoloji/card" title="Sponsor StarTeknoloji" height="200" width="1000" style="border: 10;"></iframe> <iframe src="https://github.com/sponsors/Codes-Exe/card" title="Sponsor Codes-Exe" height="200" width="1000" style="border: 10;"></iframe>

Contact

  • email: ercetinguler@starteknoloji.space
  • Tel: +90 0288 318 3560
  • Adrres: Devlet Mah. Kanal Cad:13 Türkiye/Kırklareli/Vize
  • Author: Erçetin Güler

See the actions tab for runs of this action! 🚀

<script type='text/javascript'> var disqus_shortname = 'starteknoloji-space'; // DON'T EDIT BELOW THIS LINE (function () { var loaded = false; function loadDisqus() { if (loaded) return; loaded = true; var div = document.getElementById('all-comments'); div.innerHTML = ''; div.id = 'disqus_thread'; var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = 'https://' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); } if ( document.getElementById('all-comments') || document.readyState === "complete" ) { return setTimeout( loadDisqus, 1 ); } if ( document.addEventListener ) { document.addEventListener( "DOMContentLoaded", loadDisqus, false ); window.addEventListener( "load", loadDisqus, false ); } else if ( document.attachEvent ) { document.attachEvent( "onreadystatechange", loadDisqus ); window.attachEvent( "onload", loadDisqus); } }()); </script>
<script> window.addEventListener('message', receiveMessage, false); function receiveMessage(event) { if (event.data) { var msg; try { msg = JSON.parse(event.data); } catch (err) { // Do nothing } if (!msg) { return false; } if (msg.name === 'resize' || msg.name === 'rendered') { window.parent.postMessage({ sentinel: 'amp', type: 'embed-size', height: msg.data.height }, '*'); } } } </script> <script> /** * RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS. * LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables */ var disqus_config = function () { this.page.url = window.location; this.page.identifier = window.location.hash; }; (function() { // DON'T EDIT BELOW THIS LINE var d = document, s = d.createElement('script');
    s.src = '//starteknoloji-space.disqus.com/embed.js';

    s.setAttribute('data-timestamp', +new Date());
    (d.head || d.body).appendChild(s);
})();
</script> <script async custom-element="amp-iframe" src="https://cdn.ampproject.org/v0/amp-iframe-0.1.js"></script>
Load more
<script> /** * RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS. * LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables */ /* var disqus_config = function () { this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable }; */ (function() { // DON'T EDIT BELOW THIS LINE var d = document, s = d.createElement('script'); s.src = 'https://starteknoloji-space.disqus.com/embed.js'; s.setAttribute('data-timestamp', +new Date()); (d.head || d.body).appendChild(s); })(); </script> Please enable JavaScript to view the comments powered by Disqus. <script id="dsq-count-scr" src="//starteknoloji-space.disqus.com/count.js" async></script>
<script> /** * RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS. * LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables */ /* var disqus_config = function () { this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable }; */ (function() { // DON'T EDIT BELOW THIS LINE var d = document, s = d.createElement('script'); s.src = 'https://starteknoloji-space.disqus.com/embed.js'; s.setAttribute('data-timestamp', +new Date()); (d.head || d.body).appendChild(s); })(); </script> Please enable JavaScript to view the comments powered by Disqus. <script id="dsq-count-scr" src="//starteknoloji-space.disqus.com/count.js" async></script>