Skip to content

Commit

Permalink
Create testcachewindows.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aparnajyothi-y authored Apr 10, 2024
1 parent eae4953 commit 9fcd893
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/testcachewindows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on:
workflow_dispatch:

jobs:
node-npm-depencies-caching:
name: Test cache for (Node ${{ matrix.node-version}}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [18,20]
steps:
- uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install

0 comments on commit 9fcd893

Please sign in to comment.