Công cụ Developer

Tạo GitHub Actions

Xây dựng workflow GitHub Actions trực quan — cấu hình trigger, job, matrix, service, 20+ action phổ biến và tải YAML sẵn sản xuất

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

Chưa thấy công cụ bạn cần?

Chúng tôi xây công cụ miễn phí dựa trên phản hồi cộng đồng. Hãy đề xuất tiện ích giúp workflow của bạn!

Tạo GitHub Actions — Công Cụ Miễn Phí Online | FreeTool24 | FreeTool24