Checkout Node Project
ActionsTags
(1)A simple composite GitHub Action to checkout and initialize a Node project.
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.