Skip to content

Commit

Permalink
chore: Update npm cache and dependency paths in GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
renefs committed Jul 4, 2024
1 parent a213ba2 commit 5ef64ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/react.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: npm
cache: "npm"
cache-dependency-path: client/package.lock.json
- name: Install Dependencies
run: |
cd client && npm ci
cd client && npm install
- name: Lint
run: |
cd client && npm run lint
- name: Run Tests
run: |
cd client && npm test --coverage
cd client && npm run test --coverage
- name: Upload coverage
uses: codecov/codecov-action@v1

0 comments on commit 5ef64ed

Please sign in to comment.