11
0
Fork 0
mirror of https://github.com/actions/setup-node.git synced 2026-05-24 05:11:53 +00:00

Merge pull request #3 from tijuks/main

Cn
This commit is contained in:
Tijuks 2026-04-02 01:44:10 +03:00 committed by GitHub
commit 3d5641e189
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 3 deletions

View file

@ -0,0 +1,10 @@
steps:
- uses: actions/checkout@v6 # Always run this first!
- name: Clean global cache
run: npm cache clean --force
- name: Setup Node
uses: ./
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
# ... the rest of your steps ...