Skip to content

Commit

Permalink
Revert "ci(workflow): add 'npm' cache for actions/setup-node in .gith…
Browse files Browse the repository at this point in the history
…ub/workflows (#2672)"

This reverts commit 68f33b0.
  • Loading branch information
rejas committed Oct 14, 2021
1 parent 25fd51a commit 9a242a7
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,15 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [8.x, 10.x, 12.x]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Installing Node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Installing dependencies
run: npm ci
- name: Installing gulp command line interface
run: npm install gulp-cli
- name: Testing Modernizr
run: npm test
- name: Checkout code
uses: actions/checkout@v2
- name: Installing Node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Installing dependencies
run: npm ci
- name: Installing gulp command line interface
run: npm install gulp-cli
- name: Testing Modernizr
run: npm test

0 comments on commit 9a242a7

Please sign in to comment.