Skip to content

Checkout Node Project

Actions
Checkout, install Node, and run npm ci
v1
Latest
Star (0)

checkout-node-project

A simple composite GitHub Action to checkout and initialize a Node project.

Usage

Remove boilerplate to initialize your node project, so you can replace...

steps:
  - name: Checkout your branch
    uses: actions/checkout@v4

  - name: Then install Node.js
    uses: actions/setup-node@v4
    with:
      node-version: 20.x

  - name: Then install dependencies
    run: npm ci

with...

steps:
  - name: All above steps in one!
    uses: adamhamlin/checkout-node-project@v1
    with:
      node-version: 20.x

Checkout Node Project is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Checkout, install Node, and run npm ci
v1
Latest

Checkout Node Project is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.