github-actions-models 1.27.0

Unofficial, high-quality data models for GitHub Actions workflows, actions, and related components
Documentation
# https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#jobsjob_idstepswait-all
name: Name

on: [push]

jobs:
  build:
    runs-on: ubuntu-22.04
    steps:
      - name: Start long-running monitor
        id: monitor
        run: ./scripts/monitor.sh
        background: true

      - name: Run the main task
        run: npm test

      - name: Stop the monitor
        cancel: monitor