AltraTools
⚙️

GitHub Actions Generator

Generate GitHub Actions workflow YAML for CI/CD pipelines

Presets

Workflow Settings

Node.js Setup

Steps

Options

Generated Workflow

name: CI

on:
  push:
    branches:
      - main

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Setup Node.js
        uses: actions/setup-node@v4
        with:
          node-version: '20'
          cache: 'npm'

      - name: Install dependencies
        run: npm ci

      - name: Lint
        run: npm run lint

      - name: Test
        run: npm test

      - name: Build
        run: npm run build

Save as .github/workflows/ci.yml

Required Secrets

Add these to your repository settings → Secrets:

  • No secrets required for this configuration