Merge pull request #8 from tijuks/tijuks-patch-2

Add e2e-cache.yml workflow for caching setup
This commit is contained in:
Tijuks 2026-04-02 01:35:00 +03:00 committed by GitHub
commit d475f375e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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