Skip to content
Latchkey

dev workflow (gulpjs/gulp)

The dev workflow from gulpjs/gulp, explained and optimized by Latchkey.

F

CI health: F - at risk

Point runs-on at Latchkey and get caching, run de-duplication, job timeouts, SHA-pinned actions, self-healing for flaky steps, and up to 58% lower cost, applied automatically.

Grade your own workflow free or run it on Latchkey →
Source: gulpjs/gulp.github/workflows/dev.ymlLicense MITView source

What it does

This is the dev workflow from the gulpjs/gulp repository, a real project running GitHub Actions. It is shown here with attribution under its MIT license.

Below, Latchkey shows a faster, safer version produced by its optimization engine.

The workflow

workflow (.yml)
name: dev
on:
  pull_request:
  push:
    branches:
      - master
      - main
env:
  CI: true

jobs:
  prettier:
    name: Format code
    runs-on: ubuntu-latest
    if: ${{ github.event_name == 'push' }}

    steps:
      - name: Checkout
        uses: actions/checkout@v2

      - name: Prettier
        uses: gulpjs/prettier_action@v3.0
        with:
          commit_message: 'chore: Run prettier'
          prettier_options: '--write .'

  test:
    name: Tests for Node ${{ matrix.node }} on ${{ matrix.os }}
    runs-on: ${{ matrix.os }}

    strategy:
      fail-fast: false
      matrix:
        node: [10, 12, 14, 16, 18, 20, 22, 24]
        os: [ubuntu-latest, windows-latest, macos-13]

    steps:
      - name: Clone repository
        uses: actions/checkout@v2

      - name: Set Node.js version
        uses: actions/setup-node@v2
        with:
          node-version: ${{ matrix.node }}

      - run: node --version
      - run: npm --version

      - name: Install npm dependencies
        run: npm install

      - name: Run lint
        run: npm run lint

      - name: Run tests
        run: npm test

      - name: Coveralls
        uses: coverallsapp/github-action@v1.1.2
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
          flag-name: ${{matrix.os}}-node-${{ matrix.node }}
          parallel: true

  coveralls:
    needs: test
    name: Finish up

    runs-on: ubuntu-latest
    steps:
      - name: Coveralls Finished
        uses: coverallsapp/github-action@v1.1.2
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
          parallel-finished: true

The same workflow, on Latchkey

Estimated ~20% faster on cache hits, plus fewer wasted runs and a safer supply chain. Added and changed lines are highlighted.

name: dev
on:
  pull_request:
  push:
    branches:
      - master
      - main
env:
  CI: true
 
concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true
 
jobs:
  prettier:
    timeout-minutes: 30
    name: Format code
    runs-on: latchkey-small
    if: ${{ github.event_name == 'push' }}
 
    steps:
      - name: Checkout
        uses: actions/checkout@v2
 
      - name: Prettier
        uses: gulpjs/prettier_action@v3.0
        with:
          commit_message: 'chore: Run prettier'
          prettier_options: '--write .'
 
  test:
    timeout-minutes: 30
    name: Tests for Node ${{ matrix.node }} on ${{ matrix.os }}
    runs-on: ${{ matrix.os }}
 
    strategy:
      fail-fast: false
      matrix:
        node: [10, 12, 14, 16, 18, 20, 22, 24]
        os: [ubuntu-latest, windows-latest, macos-13]
 
    steps:
      - name: Clone repository
        uses: actions/checkout@v2
 
      - name: Set Node.js version
        uses: actions/setup-node@v2
        with:
          cache: 'npm'
          node-version: ${{ matrix.node }}
 
      - run: node --version
      - run: npm --version
 
      - name: Install npm dependencies
        run: npm install
 
      - name: Run lint
        run: npm run lint
 
      - name: Run tests
        run: npm test
 
      - name: Coveralls
        uses: coverallsapp/github-action@v1.1.2
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
          flag-name: ${{matrix.os}}-node-${{ matrix.node }}
          parallel: true
 
  coveralls:
    timeout-minutes: 30
    needs: test
    name: Finish up
 
    runs-on: latchkey-small
    steps:
      - name: Coveralls Finished
        uses: coverallsapp/github-action@v1.1.2
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
          parallel-finished: true
 

What changed

2 third-party actions are referenced by a movable tag. Pin them to the commit SHA (Latchkey resolves and applies this automatically) so a repointed tag cannot change what runs.

What Latchkey heals here

This workflow has steps that commonly fail on transient issues (network, registries, flaky browsers). On Latchkey managed runners they are detected, retried, and self-healed instead of failing your build:

This workflow runs 3 jobs (26 with the matrix expanded) per trigger. On Latchkey the same minutes cost up to 58% less than GitHub-hosted, with zero queue time.

Actions used in this workflow