mirror of
https://github.com/actions/setup-node.git
synced 2026-05-15 14:48:53 +00:00
11 lines
271 B
YAML
11 lines
271 B
YAML
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 ...
|