Skip to content
Latchkey

Node.js CI workflow (jprichardson/node-fs-extra)

The Node.js CI workflow from jprichardson/node-fs-extra, explained and optimized by Latchkey.

D

CI health: D - needs work

Run this on Latchkey for self-healing, caching, and up to 58% lower cost.

Grade your own workflow free or run it on Latchkey →
Source: jprichardson/node-fs-extra.github/workflows/ci.ymlLicense MITView source

What it does

This is the Node.js CI workflow from the jprichardson/node-fs-extra 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: Node.js CI
on:
  push:
    branches: master
  pull_request:

permissions:
  contents: read #  to fetch code (actions/checkout)

jobs:
  test:
    strategy:
      matrix:
        node: [14.x, 16.x, 18.x, 20.x, 22.x, 24.x, 26.x]
        os: [ubuntu-latest, macos-15-intel, windows-latest]
    runs-on: ${{ matrix.os }}
    steps:
    - uses: actions/checkout@v3
    - name: Use Node.js ${{ matrix.node }}
      uses: actions/setup-node@v3
      with:
        node-version: ${{ matrix.node }}
    - run: npm install
    - run: npm test

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: Node.js CI
on:
  push:
    branches: master
  pull_request:
 
permissions:
  contents: read #  to fetch code (actions/checkout)
 
concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true
 
jobs:
  test:
    timeout-minutes: 30
    strategy:
      matrix:
        node: [14.x, 16.x, 18.x, 20.x, 22.x, 24.x, 26.x]
        os: [ubuntu-latest, macos-15-intel, windows-latest]
    runs-on: ${{ matrix.os }}
    steps:
    - uses: actions/checkout@v3
    - name: Use Node.js ${{ matrix.node }}
      uses: actions/setup-node@v3
      with:
        cache: 'npm'
        node-version: ${{ matrix.node }}
    - run: npm install
    - run: npm test
 

What changed

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 1 job (21 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