JavaScript github-actions

Open-source JavaScript projects categorized as github-actions

Top 23 JavaScript github-action Projects

  • cml

    ♾️ CML - Continuous Machine Learning | CI/CD for ML (by iterative)

    Project mention: CML: CI/CD for Machine Learning Projects | news.ycombinator.com | 2023-02-11
  • blog-post-workflow

    Show your latest blog posts from any sources or StackOverflow activity or Youtube Videos on your GitHub profile/project readme automatically using the RSS feed

    Project mention: My yearly "Praise for Bookstack" Post | reddit.com/r/selfhosted | 2023-01-04

    I would like to be able to add an RSS feed with latest posts to my github profile via https://github.com/gautamkrishnar/blog-post-workflow

  • Appwrite

    Appwrite - The Open Source Firebase alternative introduces iOS support . Appwrite is an open source backend server that helps you build native iOS applications much faster with realtime APIs for authentication, databases, files storage, cloud functions and much more!

  • action-tmate

    Debug your GitHub Actions via SSH by using tmate to get access to the runner system itself.

    Project mention: Act: Run your GitHub Actions locally | news.ycombinator.com | 2022-11-25

    Unfortunately act is only capable of running very simple workflows. I've found this action to be more useful against the endless PR stream: https://github.com/mxschmitt/action-tmate

    You drop it in your workflow and get an SSH shell into the worker, figure things out iteratively, then push when it's working.

  • github-action

    GitHub Action for running Cypress end-to-end & component tests

    Project mention: Effective Test Strategies for Deployed NodeJS Services using LaunchDarkly Feature Flags and Cypress. Part2: testing | dev.to | 2022-05-21

    # .github/workflows/main.yml name: cypress-crud-api-test on: push: workflow_dispatch: # if this branch is pushed back to back, cancel the older branch's workflow concurrency: group: ${{ github.ref }} && ${{ github.workflow }} cancel-in-progress: true jobs: test: strategy: # uses 1 CI machine matrix: machines: [1] runs-on: ubuntu-20.04 steps: - name: Checkout 🛎 uses: actions/[email protected] # https://github.com/cypress-io/github-action - name: Run api tests 🧪 uses: cypress-io/[email protected] with: browser: chrome record: true group: crud api test env: CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} LAUNCH_DARKLY_PROJECT_KEY: ${{ secrets.LAUNCH_DARKLY_PROJECT_KEY }} LAUNCH_DARKLY_AUTH_TOKEN: ${{ secrets.LAUNCH_DARKLY_AUTH_TOKEN }} LAUNCHDARKLY_SDK_KEY: ${{ secrets.LAUNCHDARKLY_SDK_KEY }} #{{ # Here we are running the unit tests after the e2e # taking advantage of npm install in Cypress GHA. # Ideally we install first, and carry over the cache # to unit and e2e jobs. # Check this link for the better way: # https://github.com/muratkeremozcan/react-hooks-in-action-with-cypress/blob/main/.github/workflows/main.yml - name: run unit tests run: npm run test

  • lighthouse-ci-action

    Audit URLs using Lighthouse and test performance with Lighthouse CI.

  • heroku-deploy

    A simple github action that dynamically deploys an app to heroku

    Project mention: Why companies move off Heroku (besides the cost) | news.ycombinator.com | 2022-04-27
  • ssh-agent

    GitHub Action to setup `ssh-agent` with a private key

  • Sonar

    Write Clean JavaScript Code. Always.. Sonar helps you commit clean code every time. With over 300 unique rules to find JavaScript bugs, code smells & vulnerabilities, Sonar finds the issues while you focus on the work.

  • actions

    GitHub Actions for the R community (by r-lib)

    Project mention: Can someone explain how R project are organized and deployed? | reddit.com/r/rprogramming | 2023-03-04

    For CI/CD type of thing perhaps check https://github.com/r-lib/actions .

  • action

    :bird: A GitHub action to tweet from a repository (by twitter-together)

    Project mention: Creating GitHub Actions for community engagement | dev.to | 2023-01-06

    Twitter, Together!: A GitHub action to tweet from a repository. Post Slack Messages: GitHub Action for posting Slack messages. GitHub Tag Action: A GitHub Action to tag a repo on merge. Assign Reviewers To Assignees: GitHub Action that assigns reviewers based on assignees. GitHub Sync: This action helps you to sync your PRs with tasks in Teamwork to streamline team collaboration and your development workflows. Issue Action: GitHub action for GitHub issue. First Interaction: An action for filtering pull requests and issues from first-time contributors.

  • github-activity-readme

    Updates README with the recent GitHub activity of a user

  • npm-install

    GitHub Action for install npm dependencies with caching without any configuration

  • expo-github-action

    Expo GitHub Action makes it easy to automate EAS builds or updates

  • vercel-action

    This action make a deployment with github actions instead of Vercel builder.

    Project mention: How to create and deploy an (express) Bridge app with Vercel | dev.to | 2023-02-15

    Having Nodejs and Vercel CLI installed on your machine.

  • lint-action

    ✨ GitHub Action for detecting and auto-fixing lint errors

  • ec2-github-runner

    On-demand self-hosted AWS EC2 runner for GitHub Actions

    Project mention: Modernizing a CI+CD pipeline with Github Actions | dev.to | 2022-06-07

    This would be a huge improvement to control the cost while still being able to scale the number of runners: https://github.com/machulav/ec2-github-runner

  • action-doctl

    GitHub Actions for DigitalOcean - doctl

    Project mention: ⚔️⭐GET FREE RDP/VPS⭐️⚔【⭐HIGH SPEED⭐】【❤️TESTED & WORKING 2023❤️】【✔️ BEST FREE RDP /✔️】 | reddit.com/r/make_money_online_vip | 2023-03-16
  • action-send-mail

    :gear: A GitHub Action to send an email to multiple recipients

    Project mention: What about Kubescape In Your CI Pipeline? | dev.to | 2022-06-26

    You can send a report by e-mail using Dawid Dziurla's contribution, but keep in mind that the username and password for authentication on the mail server must be present as secrets in your repository. This step can also be observed in our example.

  • vault-action

    A GitHub Action that simplifies using HashiCorp Vault™ secrets as build variables.

    Project mention: Best way to pass secrets to Docker in Github Actions | reddit.com/r/docker | 2022-09-18
  • action-discord

    🚀 GitHub Action that sends a Discord message.

    Project mention: Builds desde Unity en la nube(sin salir de GitHub) ☁️🔧 [2/3] | dev.to | 2022-05-02
  • commitlint-github-action

    Lints Pull Request commits with commitlint

    Project mention: py-template: one-click extensive GitHub Actions pipelines for your Python projects! | reddit.com/r/Python | 2022-11-13

    I am not too familiar with GitLab, to be honest, but: - Commit/PR linting (to be in tandem with semantic versioning) is implemented via third-party GitHub Actions (https://github.com/amannn/action-semantic-pull-request and https://github.com/wagoid/commitlint-github-action), these might be hard to transfer - Blocking egress to mitigate supply chain attacks is performed by step security’s Harden Runner (https://github.com/step-security/harden-runner), you may raise a question there about GitLab support - CodeQL support is GitHub only AFAIK (but you would have to verify it)

  • qodana-action

    ⚙️ Scan your Go, Java, Kotlin, PHP, Python, JavaScript, TypeScript, .NET projects at GitHub with Qodana. This repository contains Qodana for Azure, GitHub and CircleCI

  • mongodb-github-action

    Use MongoDB in GitHub Actions

  • actions

    A set of GitHub actions for Infracost. See cloud cost estimates for Terraform in pull requests. 💰📉 Love your cloud bill! (by infracost)

    Project mention: Calculating Cost like a DevOps Boss with Infracost and AWS | dev.to | 2022-10-05

    First, follow the instructions found here to download and authenticate Infracost. This includes creating an org inside the platform, which is where you can fetch the API key. Then we need a quick way to spin up some small AWS instances and then quickly dial them up to more expensive options.

  • InfluxDB

    Access the most powerful time series database as a service. Ingest, store, & analyze all types of time series data in a fully-managed, purpose-built database. Keep data forever with low-cost storage and superior data compression.

NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020). The latest post mention was on 2023-03-16.

JavaScript github-actions related posts

Index

What are some of the best open-source github-action projects in JavaScript? This list will help you:

Project Stars
1 cml 3,668
2 blog-post-workflow 2,460
3 action-tmate 2,003
4 github-action 1,098
5 lighthouse-ci-action 985
6 heroku-deploy 905
7 ssh-agent 805
8 actions 782
9 action 678
10 github-activity-readme 637
11 npm-install 600
12 expo-github-action 566
13 vercel-action 507
14 lint-action 440
15 ec2-github-runner 408
16 action-doctl 378
17 action-send-mail 330
18 vault-action 328
19 action-discord 311
20 commitlint-github-action 279
21 qodana-action 181
22 mongodb-github-action 178
23 actions 169
Access the most powerful time series database as a service
Ingest, store, & analyze all types of time series data in a fully-managed, purpose-built database. Keep data forever with low-cost storage and superior data compression.
www.influxdata.com