All Projects → bahmutov → Npm Install

bahmutov / Npm Install

GitHub Action for install npm dependencies with caching without any configuration

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Npm Install

supabase-schema
Secured & Simple Supabase Schema Visualizer
Stars: ✭ 216 (-30.32%)
Mutual labels:  yarn
Simple React App
Simple base app using react, react-router v4, hot-reload & sass.
Stars: ✭ 263 (-15.16%)
Mutual labels:  yarn
Yarneditor
A tool for writing interactive dialogue in games!
Stars: ✭ 292 (-5.81%)
Mutual labels:  yarn
Quora
Building An Exclusive Community of PEC Graduates and Students.The main features of the website are “PEC Quora” and “PEC Connect”
Stars: ✭ 26 (-91.61%)
Mutual labels:  yarn
Hare
🐇 Application boilerplate based on Vue.js 2.x, Koa 2.x, Element-UI and Nuxt.js
Stars: ✭ 258 (-16.77%)
Mutual labels:  yarn
Vue.js Starter Template
A starter template for Vue.js projects
Stars: ✭ 267 (-13.87%)
Mutual labels:  yarn
hardhat-dependency-compiler
📦 Compile Solidity sources directly from NPM dependencies
Stars: ✭ 19 (-93.87%)
Mutual labels:  yarn
Webpack Cdn Plugin
A webpack plugin that use externals of CDN urls for production and local node_modules for development
Stars: ✭ 306 (-1.29%)
Mutual labels:  yarn
Install nodejs and yarn homebrew
The guide for installing nvm | node | yarn via homebrew
Stars: ✭ 261 (-15.81%)
Mutual labels:  yarn
Berry
📦🐈 Active development trunk for Yarn ⚒
Stars: ✭ 4,423 (+1326.77%)
Mutual labels:  yarn
cloud-computer
☁️ The Cloud Native Computer
Stars: ✭ 5 (-98.39%)
Mutual labels:  yarn
Ngx Smart Modal
Modal/Dialog component crafted for Angular
Stars: ✭ 256 (-17.42%)
Mutual labels:  yarn
Webclient
Monorepo hosting the proton web clients
Stars: ✭ 3,079 (+893.23%)
Mutual labels:  yarn
ngx-smart-loader
Smart loader handler to manage loaders everywhere in Angular apps.
Stars: ✭ 28 (-90.97%)
Mutual labels:  yarn
Neard
🎲 Portable WAMP software stack
Stars: ✭ 296 (-4.52%)
Mutual labels:  yarn
knit
Deprecated, please use https://github.com/jcrist/skein or https://github.com/dask/dask-yarn instead
Stars: ✭ 53 (-82.9%)
Mutual labels:  yarn
Yvm
🧶 Manage multiple versions of Yarn
Stars: ✭ 265 (-14.52%)
Mutual labels:  yarn
Graphql Starter
💥 Monorepo template (seed project) pre-configured with GraphQL API, PostgreSQL, React, Relay, and Material UI.
Stars: ✭ 3,377 (+989.35%)
Mutual labels:  yarn
Bower Away
A tool for migrating away from Bower (to Yarn)
Stars: ✭ 299 (-3.55%)
Mutual labels:  yarn
Saltgui
A web interface for managing SaltStack based infrastructure.
Stars: ✭ 278 (-10.32%)
Mutual labels:  yarn

npm-install semantic-release renovate-app badge

GitHub Action for install npm dependencies with caching without any configuration

CI

Example Status
main this repo
basic basic example
shrinkwrap shrinkwrap example
Yarn yarn example
without lock file without lockfile example
subfolders subfolders example

Examples

Basic

This example should cover 95% of use cases.

If you use npm ci or yarn --frozen-lockfile on CI to install NPM dependencies - this Action is for you. Simply use it, and your NPM modules will be installed and the folder ~/.npm or ~/.cache/yarn will be cached. Typical use:

name: main
on: [push]
jobs:
  build-and-test:
    runs-on: ubuntu-latest
    name: Build and test
    steps:
      - uses: actions/[email protected]
      - uses: bahmutov/[email protected]
      - run: npm t

See bahmutov/npm-install-action-example npm-install-action-example.

Subfolders

If your repository contains packages in separate folders, install each one separately

repo/
  app1/
    package-lock.json
  app2/
    yarn.json
name: main
on: [push]

jobs:
  build-and-test:
    runs-on: ubuntu-latest
    name: Build and test
    steps:
      - uses: actions/[email protected]

      - uses: bahmutov/[email protected]
        with:
          working-directory: app1
      - uses: bahmutov/[email protected]
        with:
          working-directory: app2

      - name: App1 tests
        run: npm t
        working-directory: app1
      - name: Run app2
        run: node .
        working-directory: app2

See npm-install-monorepo-example npm-install-monorepo-example.

You can also specify multiple subfolders in a single action; one subfolder per line.

name: main
on: [push]

jobs:
  build-and-test:
    runs-on: ubuntu-latest
    name: Build and test
    steps:
      - uses: actions/[email protected]
      - uses: bahmutov/[email protected]
        with:
          working-directory: |
            app1
            app2

Use lock file

By default, this action will use a lock file like package-lock.json, npm-shrinkwrap.json or yarn.lock. You can set useLockFile: false to use just package.json which might be better for building libraries.

- uses: bahmutov/[email protected]
  with:
    useLockFile: false

Use time-based rolling cache

By default, yarn and npm dependencies will be cached according to the exact hash of the lockfile (if enabled) or the package.json. This will cause cache misses when the dependencies change, which can be slower than re-installing for big projects. To re-use the cache across runs with different lockfiles/dependencies, you can enable the useRollingCache option, which will restore the cache from more keys. It will expire the cache once a month to keep it from growing too large, see the Cache Snowballing & Rolling Cache expiry below.

- uses: bahmutov/[email protected]
  with:
    useRollingCache: true

useRollingCache is defaulted to false.

Production dependencies

You can install just the production dependencies (without installing dev dependencies) by setting an environment variable NODE_ENV variable

- uses: bahmutov/[email protected]
  env:
    NODE_ENV: production

Custom install command

You can use your own install command

- uses: bahmutov/[email protected]
  with:
    install-command: yarn --frozen-lockfile --silent

See example-install-command.yml

External examples

Name Description
npm-install-example Shows how to use this action

NPM

If you are writing your own GitHub Action and would like to use this action as a utility function, import it and run it.

const { npmInstallAction } = require('npm-install')
await npmInstallAction()

Debugging

You can see verbose messages from GitHub Actions by setting the following secrets (from Debugging Actions Guide)

ACTIONS_RUNNER_DEBUG: true
ACTIONS_STEP_DEBUG: true

Tip: environment variable ACTIONS_STEP_DEBUG enables debug messages from this action itself, try it first.

Testing

Using Mocha and Sinon.js following the guide How to set up Mocha with Sinon.js. You can find the tests in test folder. In general:

  • all environment inputs are done inside the action, so they can be stubbed and controlled during tests
  • there are separate workflows in .github/workflows that match examples. Each workflow uses this action to install dependencies

Cache Snowballing & Rolling Cache expiry

By default, this action will cache dependencies using an exacty hashs of the lock file (like package-lock.json, npm-shrinkwrap.json or yarn.lock). If you change any dependencies, there will be a cache miss. This is the default cache key strategy to avoid unbounded growth of the cache, as if you don't expire the cache, it will continue being added to. See this post for more details on this issue.

To get better cache hit rates without the cache size snowballing, you can turn on this action's useRollingCache option, which will allow old caches to be re-used when your dependencies change, at the expense of some snowballing. Instead of letting the cache grow forever, this action resets it every month by including the current month in the cache key.

The rule of thumb is this: if re-installing your dependencies doesn't take very long, you can avoid superfluous cache restores by keeping useRollingCache off. This is the recommended setup for small projects. For big projects where installing the dependencies takes a long time, and cache restores are faster, useRollingCache will provide a performance improvement.

Links

Small print

Author: Gleb Bahmutov <[email protected]> © 2019

License: MIT - do anything with the code, but don't blame me if it does not work.

Support: if you find any problems with this module, email / tweet / open issue on Github

MIT License

Copyright (c) 2019 Gleb Bahmutov <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].