GitHub Action Generator
Generate GitHub workflow configurations for CI/CD pipelines with common templates
Generated Workflow
Save as: .github/workflows/ci.ymlname: 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