11
0
Fork 0
mirror of https://github.com/actions/setup-node.git synced 2026-05-24 05:11:53 +00:00
setup-node/.github/wogithub/workflows/e2e-cache.yml
Tijuks 68e3fdc43f
Add e2e-cache.yml workflow for caching setup
Signed-off-by: Tijuks   <154919533+tijuks@users.noreply.github.com>
2026-04-02 01:33:10 +03:00

10 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 ...