DevTools

TOOLS COLLECTION

Need a specific tool?

Request a new developer tool to be added to our collection.

Request a tool →

GitHub Action Generator

Generate GitHub workflow configurations for CI/CD pipelines with common templates

Generated Workflow

Save as: .github/workflows/ci.yml
name: CI

on:
  push:
    branches: ["main"]
  pull_request:
    branches: ["main"]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3

      - name: Install dependencies
        run: npm ci

      - name: Run tests
        run: npm test

      - name: Build
        run: npm run build