Skip to content

GitHub Actions: Setup-node now supports dependency caching

You can now run Node.js projects faster on GitHub Actions by enabling dependency caching on the setup-node action. setup-node supports caching from both npm and yarn package managers.

- uses: actions/setup-node@v2
  with:
    node-version: '14'
    cache: npm

For questions, visit the GitHub Actions community

Maintainers now have additional control over when they must approve Actions runs for new contributors.

preview

In April, we shipped an update for GitHub Actions that required maintainers to approve Actions runs for first-time contributors in their repositories. Based on your feedback we have added additional settings to give you more control over this behavior.

Learn more about approving first time contributor pull requests

See more