DIFF.BLOG
New
Following
Discover
Jobs
More
Suggest a blog
Upvotes plugin
Report bug
Contact
About
Sign up  
Setup NodeJS in GitHub actions
1
·
Wen Wei Tseng
·
Sept. 4, 2023, 3:35 p.m.
Summary
The setup-node action installs Node.js and (optionally) caches package dependencies. Therefore, the cache action is not needed. steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: '18' cache: 'npm' - run: npm ci - run: npm test....
Read full post on sosiristseng.github.io →
Submit
AUTHOR
RECENT POSTS FROM THE AUTHOR