ToolHub
中文
Light
GitHub
返回首页
/
开发编程
/
GitHub Actions YAML 生成器
加载中...
复制
name: CI on: [push, pull_request] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: 22 cache: npm - run: npm ci - run: npm run lint - run: npm run build