FreeTool
Developer Tools

GitHub Actions Generator

Build GitHub Actions workflows visually — configure triggers, jobs, matrix strategy, services, 20+ popular actions, and download production-ready YAML

Quick Start Templates
Workflow Settings
Job: Build & Test(5 steps · ubuntu-latest)
1
2
3
4
5
Generated YAML
name: Node.js CI

on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - main

jobs:
  build-test:
    name: Build & Test
    runs-on: ubuntu-latest
    strategy:
      matrix:
        node-version: [18, 20, 22]
    steps:
      - name: Checkout
        uses: actions/checkout@v4
      - name: Setup Node.js ${{ matrix.node-version }}
        uses: actions/setup-node@v4
        with:
          node-version: ${{ matrix.node-version }}
          cache: npm
      - name: Install dependencies
        run: npm ci
      - name: Run tests
        run: npm test
      - name: Build
        run: npm run build
Save as .github/workflows/node.js-ci.yml

Don't see what you need?

We build free tools based on community feedback. If there's a utility that would improve your workflow, suggest it today!